We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9751b53 commit 0aaa260Copy full SHA for 0aaa260
src/mkdocstrings_handlers/python/handler.py
@@ -307,7 +307,7 @@ def update_env(self, config: Any) -> None: # noqa: ARG002
307
def get_aliases(self, identifier: str) -> tuple[str, ...]: # noqa: D102 (ignore missing docstring)
308
try:
309
data = self._modules_collection[identifier]
310
- except KeyError:
+ except (KeyError, AliasResolutionError):
311
return ()
312
aliases = [data.path]
313
0 commit comments