File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments