Skip to content
This repository was archived by the owner on Apr 22, 2026. It is now read-only.

Commit 9cfbc29

Browse files
committed
fix: add noqa for optional git URL fetch exception
1 parent 6ced81a commit 9cfbc29

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fuzzforge-cli/src/fuzzforge_cli/tui/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def load_hubs_registry() -> dict[str, Any]:
345345
)
346346
if r.returncode == 0:
347347
git_url = r.stdout.strip()
348-
except Exception:
348+
except Exception: # noqa: S110 - git URL is optional, failure is acceptable
349349
pass
350350
hubs.append({
351351
"name": name,

0 commit comments

Comments
 (0)