(self, prog)
| 7517 | def test_custom_formatter_class(self): |
| 7518 | class CustomFormatter(argparse.RawTextHelpFormatter): |
| 7519 | def __init__(self, prog): |
| 7520 | super().__init__(prog, indent_increment=5) |
| 7521 | |
| 7522 | parser = argparse.ArgumentParser( |
| 7523 | prog="PROG", |