Skip to content

Commit e538d1a

Browse files
committed
Fix flake8 errors for continuation line under-indented after refactoring
1 parent 70bf9e1 commit e538d1a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cmd2/cmd2.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ def arg_decorator(func: Callable):
172172
@functools.wraps(func)
173173
def cmd_wrapper(cmd2_instance, statement: Union[Statement, str]):
174174
_, parsed_arglist = cmd2_instance._statement_parser.get_command_arg_list(command_name,
175-
statement,
176-
preserve_quotes)
175+
statement,
176+
preserve_quotes)
177177

178178
return func(cmd2_instance, parsed_arglist)
179179

@@ -211,8 +211,8 @@ def arg_decorator(func: Callable):
211211
@functools.wraps(func)
212212
def cmd_wrapper(cmd2_instance, statement: Union[Statement, str]):
213213
statement, parsed_arglist = cmd2_instance._statement_parser.get_command_arg_list(command_name,
214-
statement,
215-
preserve_quotes)
214+
statement,
215+
preserve_quotes)
216216

217217
if ns_provider is None:
218218
namespace = None
@@ -269,8 +269,8 @@ def arg_decorator(func: Callable):
269269
@functools.wraps(func)
270270
def cmd_wrapper(cmd2_instance, statement: Union[Statement, str]):
271271
statement, parsed_arglist = cmd2_instance._statement_parser.get_command_arg_list(command_name,
272-
statement,
273-
preserve_quotes)
272+
statement,
273+
preserve_quotes)
274274

275275
if ns_provider is None:
276276
namespace = None

0 commit comments

Comments
 (0)