From 03e0c8f20c365cc8a7a54698c8bc23d5d4a4c898 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 17 Jun 2025 06:11:41 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_packaging.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_packaging.py b/tests/test_packaging.py index 9b53854..2107b5d 100644 --- a/tests/test_packaging.py +++ b/tests/test_packaging.py @@ -5,11 +5,11 @@ from pathlib import Path def test_fd_endpoint_plugin_installed(): # Find the site-packages directory for path in sys.path: - if 'site-packages' in path: + if "site-packages" in path: site_packages = Path(path) break else: raise AssertionError("Could not find site-packages in sys.path") - plugin_path = site_packages / 'twisted' / 'plugins' / 'fd_endpoint.py' + plugin_path = site_packages / "twisted" / "plugins" / "fd_endpoint.py" assert plugin_path.exists(), f"fd_endpoint.py not found at {plugin_path}"