fix: add noqa for optional git URL fetch exception

This commit is contained in:
AFredefon
2026-03-11 06:49:37 +01:00
parent 6ced81affc
commit 9cfbc29677
@@ -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,