Skip to content

Commit 9cb6bbe

Browse files
author
Gauvain Pocentek
committed
pep8 fix
1 parent cb8ca65 commit 9cb6bbe

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

gitlab/cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ def cls_to_what(cls):
7878

7979

8080
def _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")

gitlab/v4/cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)