We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea5a3d6 commit d501a7aCopy full SHA for d501a7a
pum/cli.py
@@ -163,7 +163,10 @@ def create_parser() -> argparse.ArgumentParser:
163
The fully configured argument parser.
164
165
"""
166
- parser = argparse.ArgumentParser(prog="pum")
+ parser = argparse.ArgumentParser(
167
+ prog="pum",
168
+ formatter_class=lambda prog: argparse.HelpFormatter(prog, max_help_position=40, width=100),
169
+ )
170
parser.add_argument("-c", "--config_file", help="set the config file. Default: .pum.yaml")
171
parser.add_argument("-s", "--pg-service", help="Name of the postgres service", required=True)
172
0 commit comments