diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-24 10:44:21 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-24 10:44:21 -0500 |
commit | bc01feced61d493ad8a0e3cc3d5e4768e5d214be (patch) | |
tree | df5a6d6b7f9a173eb387e17408750a2ce57b84c2 /cmd2 | |
parent | 0da2892a67527a530796d43a9a6eed35e6e78289 (diff) | |
download | cmd2-git-bc01feced61d493ad8a0e3cc3d5e4768e5d214be.tar.gz |
Fix flake8 error and make type hinting consistent
Diffstat (limited to 'cmd2')
-rw-r--r-- | cmd2/cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 21ed9592..8ad3f7ba 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -199,7 +199,7 @@ class Cmd(cmd.Cmd): def __init__(self, completekey: str = 'tab', stdin=None, stdout=None, *, persistent_history_file: str = '', persistent_history_length: int = 1000, - startup_script: str = '', silent_startup_script = False, use_ipython: bool = False, + startup_script: str = '', silent_startup_script: bool = False, use_ipython: bool = False, allow_cli_args: bool = True, transcript_files: Optional[List[str]] = None, allow_redirection: bool = True, multiline_commands: Optional[List[str]] = None, terminators: Optional[List[str]] = None, shortcuts: Optional[Dict[str, str]] = None, |