diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-10 18:58:28 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-10 18:58:28 -0400 |
commit | bc80c994abece4ac1a0540beecd93624d96514b7 (patch) | |
tree | a4a60b905859cf3360a099b90ad192f59b3b504f /tests | |
parent | 50e143c34147ada3f693cdf1b11e4e88fedb3104 (diff) | |
download | cmd2-git-bc80c994abece4ac1a0540beecd93624d96514b7.tar.gz |
Small refactoring
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_argparse_completer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_argparse_completer.py b/tests/test_argparse_completer.py index 5c6b750f..7a7559f4 100644 --- a/tests/test_argparse_completer.py +++ b/tests/test_argparse_completer.py @@ -42,8 +42,8 @@ def completer_function(text: str, line: str, begidx: int, endidx: int) -> List[s # noinspection PyMethodMayBeStatic,PyUnusedLocal class AutoCompleteTester(cmd2.Cmd): """Cmd2 app that exercises AutoCompleter class""" - def __init__(self): - super().__init__() + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) ############################################################################################################ # Begin code related to help and command name completion |