From 819ee83dddb9566ea45fb7dd46796b7c667a6c25 Mon Sep 17 00:00:00 2001 From: Nose Date: Mon, 12 Jan 2026 14:19:22 -0800 Subject: [PATCH] h --- scripts/hydrusnetwork.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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