We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90c8316 commit 47c7bcdCopy full SHA for 47c7bcd
1 file changed
sphinxconfig.py
@@ -45,13 +45,13 @@ def linkcode_resolve(
45
for part in fullname.split("."):
46
try:
47
obj = getattr(obj, part)
48
- except Exception:
+ except Exception: # noqa: BLE001
49
return None
50
51
52
modpath = os.path.dirname(os.path.dirname(inspect.getsourcefile(topmod)))
53
filepath = os.path.relpath(inspect.getsourcefile(obj), modpath)
54
55
56
57
if filepath is None:
0 commit comments