(self)
| 16 | self.helper = pydoc.Helper(sys.stdin, sys.stdout) |
| 17 | |
| 18 | def __repr__(self) -> str: |
| 19 | return ( |
| 20 | "Type help() for interactive help, " |
| 21 | "or help(object) for help about object." |
| 22 | ) |
| 23 | |
| 24 | def __call__(self, *args, **kwargs) -> None: |
| 25 | self.helper(*args, **kwargs) |
nothing calls this directly
no outgoing calls
no test coverage detected