File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,8 @@ def cls_to_what(cls):
7878
7979
8080def _get_base_parser (add_help = True ):
81- parser = argparse .ArgumentParser (add_help = add_help ,
81+ parser = argparse .ArgumentParser (
82+ add_help = add_help ,
8283 description = "GitLab API Command Line Interface" )
8384 parser .add_argument ("--version" , help = "Display the version." ,
8485 action = "store_true" )
Original file line number Diff line number Diff line change @@ -240,7 +240,8 @@ def extend_parser(parser):
240240 arg_name = cli .cls_to_what (cls )
241241 object_group = subparsers .add_parser (arg_name )
242242
243- object_subparsers = object_group .add_subparsers (title = 'action' ,
243+ object_subparsers = object_group .add_subparsers (
244+ title = 'action' ,
244245 dest = 'action' , help = "Action to execute." )
245246 _populate_sub_parser_by_class (cls , object_subparsers )
246247 object_subparsers .required = True
You can’t perform that action at this time.
0 commit comments