(self, value: bool)
| 466 | print(file=file) |
| 467 | |
| 468 | def _help_callback(self, value: bool) -> None: |
| 469 | if value: |
| 470 | self.print_help() |
| 471 | sys.exit(0) |
| 472 | |
| 473 | def add_parse_callback(self, callback: Callable[[], None]) -> None: |
| 474 | """Adds a parse callback, to be invoked when option parsing is done.""" |
nothing calls this directly
no test coverage detected