diff --git a/scripts/hydrusnetwork.py b/scripts/hydrusnetwork.py index bf1b01c..1dd61d2 100644 --- a/scripts/hydrusnetwork.py +++ b/scripts/hydrusnetwork.py @@ -516,12 +516,12 @@ def find_requirements(root: Path) -> Optional[Path]: two-level walk to find a requirements.txt so installation works even if the file is not at the repository root. """ - candidates = [ - root / "scripts" / "requirements.txt", - root / "requirements.txt", - root / "client" / "requirements.txt", - root / "requirements" / "requirements.txt", - ] + candidates = [ + root / "scripts" / "requirements.txt", + root / "requirements.txt", + root / "client" / "requirements.txt", + root / "requirements" / "requirements.txt", + ] for c in candidates: if c.exists(): return c