Skip to content

Commit 17ad109

Browse files
committed
chore(ruff): Ignore try / catch in conf
1 parent b09c2da commit 17ad109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def linkcode_resolve(domain: str, info: t.Dict[str, str]) -> t.Union[None, str]:
188188
for part in fullname.split("."):
189189
try:
190190
obj = getattr(obj, part)
191-
except Exception:
191+
except Exception: # noqa: PERF203
192192
return None
193193

194194
# strip decorators, which would resolve to the source of the decorator

0 commit comments

Comments
 (0)