Skip to content

Commit 0d5d423

Browse files
committed
Fixed PEP8 error (E501 line too long)
1 parent eee4cce commit 0d5d423

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gitlab/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ def main():
170170

171171
args = args.__dict__
172172
# Remove CLI behavior-related args
173-
for item in ('gitlab', 'config_file', 'verbose', 'debug', 'what', 'whaction',
174-
'version', 'output'):
173+
for item in ('gitlab', 'config_file', 'verbose', 'debug', 'what',
174+
'whaction', 'version', 'output'):
175175
args.pop(item)
176176
args = {k: _parse_value(v) for k, v in args.items() if v is not None}
177177

0 commit comments

Comments
 (0)