Parses global options from a config file. See `OptionParser.parse_config_file`.
(path: str, final: bool = True)
| 721 | |
| 722 | |
| 723 | def parse_config_file(path: str, final: bool = True) -> None: |
| 724 | """Parses global options from a config file. |
| 725 | |
| 726 | See `OptionParser.parse_config_file`. |
| 727 | """ |
| 728 | return options.parse_config_file(path, final=final) |
| 729 | |
| 730 | |
| 731 | def print_help(file: Optional[TextIO] = None) -> None: |
nothing calls this directly
no test coverage detected