(self, attr: str)
| 16 | # if argcomplete is not installed. |
| 17 | class StubModule: |
| 18 | def __getattr__(self, attr: str) -> t.Any: |
| 19 | if not attr.startswith("__"): |
| 20 | raise ModuleNotFoundError("No module named 'argcomplete'") |
| 21 | raise AttributeError(f"argcomplete stub module has no attribute '{attr}'") |
| 22 | |
| 23 | argcomplete = StubModule() # type:ignore[assignment] |
| 24 | CompletionFinder = object # type:ignore[assignment, misc] |
nothing calls this directly
no outgoing calls
no test coverage detected