summaryrefslogtreecommitdiff
path: root/tests/test_argparse_completer.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-07-10 18:58:28 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-07-10 18:58:28 -0400
commitbc80c994abece4ac1a0540beecd93624d96514b7 (patch)
treea4a60b905859cf3360a099b90ad192f59b3b504f /tests/test_argparse_completer.py
parent50e143c34147ada3f693cdf1b11e4e88fedb3104 (diff)
downloadcmd2-git-bc80c994abece4ac1a0540beecd93624d96514b7.tar.gz
Small refactoring
Diffstat (limited to 'tests/test_argparse_completer.py')
-rw-r--r--tests/test_argparse_completer.py4
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