(self, file: t.Any = None)
| 65 | """Simple argparse subclass that prints help to stdout by default.""" |
| 66 | |
| 67 | def print_help(self, file: t.Any = None) -> None: |
| 68 | if file is None: |
| 69 | file = sys.stdout |
| 70 | return super().print_help(file) |
| 71 | |
| 72 | print_help.__doc__ = argparse.ArgumentParser.print_help.__doc__ |
| 73 |
nothing calls this directly
no outgoing calls
no test coverage detected