better docstring
This commit is contained in:
parent
14a4aeac70
commit
893c6be9e9
1 changed files with 5 additions and 5 deletions
|
|
@ -260,17 +260,17 @@ class InspectArguments:
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
inspect_parser = subparsers.add_parser("inspect")
|
inspect_parser = subparsers.add_parser("inspect", formatter_class=argparse.RawTextHelpFormatter)
|
||||||
inspect_parser.add_argument(
|
inspect_parser.add_argument(
|
||||||
InspectArguments.LEVEL.short,
|
InspectArguments.LEVEL.short,
|
||||||
InspectArguments.LEVEL.long,
|
InspectArguments.LEVEL.long,
|
||||||
metavar=",".join(str(i) for i in range(4)),
|
metavar=",".join(str(i) for i in range(4)),
|
||||||
type=str,
|
type=str,
|
||||||
help="""level of inspection to perform:
|
help="""level of inspection to perform:
|
||||||
0 - original present the subscription as-is (default)
|
0 - original present the subscription as-is (default)
|
||||||
1 - fill fill in simple variable types
|
1 - fill fill in defined values
|
||||||
2 - resolve resolve all variables
|
2 - resolve resolve all variables
|
||||||
3 - internal resolve all variables to their internal representation
|
3 - internal resolve all variables to their internal representation
|
||||||
""",
|
""",
|
||||||
default="0",
|
default="0",
|
||||||
choices=list(InspectArguments.LevelChoices.keys())
|
choices=list(InspectArguments.LevelChoices.keys())
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue