Skip to content

Commit 6f94ced

Browse files
committed
Fix for PEP8: E127 continuation line over-indented for visual indent
1 parent e3a7650 commit 6f94ced

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

gitlab/v4/cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,7 @@ def _populate_sub_parser_by_class(cls, sub_parser):
230230
for x in required if x != cls._id_attr]
231231
[sub_parser_action.add_argument("--%s" % x.replace('_', '-'),
232232
required=False)
233-
for x in optional if x != cls._id_attr
234-
and x not in ['recursive']]
233+
for x in optional if x != cls._id_attr and x not in ['recursive']]
235234
[sub_parser_action.add_argument("--%s" % x, action='store_true',
236235
required=False)
237236
for x in optional if x in ['recursive']]

0 commit comments

Comments
 (0)