mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-07-12 21:06:33 +02:00
fix: add noqa for optional git URL fetch exception
This commit is contained in:
@@ -345,7 +345,7 @@ def load_hubs_registry() -> dict[str, Any]:
|
|||||||
)
|
)
|
||||||
if r.returncode == 0:
|
if r.returncode == 0:
|
||||||
git_url = r.stdout.strip()
|
git_url = r.stdout.strip()
|
||||||
except Exception:
|
except Exception: # noqa: S110 - git URL is optional, failure is acceptable
|
||||||
pass
|
pass
|
||||||
hubs.append({
|
hubs.append({
|
||||||
"name": name,
|
"name": name,
|
||||||
|
|||||||
Reference in New Issue
Block a user