From b0dfa5bc6907e831f2383e4058753b0b77a4b95a Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 20 Aug 2023 10:32:14 -0500 Subject: [PATCH] !squash more --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 7d7af8a0..0473d829 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -205,7 +205,7 @@ def linkcode_resolve(domain: str, info: dict[str, str]) -> t.Union[None, str]: for part in fullname.split("."): try: obj = getattr(obj, part) - except Exception: + except Exception: # noqa: PERF203 return None # strip decorators, which would resolve to the source of the decorator