Skip to content

Commit bc01fec

Browse files
committed
Fix flake8 error and make type hinting consistent
1 parent 0da2892 commit bc01fec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd2/cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ class Cmd(cmd.Cmd):
199199

200200
def __init__(self, completekey: str = 'tab', stdin=None, stdout=None, *,
201201
persistent_history_file: str = '', persistent_history_length: int = 1000,
202-
startup_script: str = '', silent_startup_script = False, use_ipython: bool = False,
202+
startup_script: str = '', silent_startup_script: bool = False, use_ipython: bool = False,
203203
allow_cli_args: bool = True, transcript_files: Optional[List[str]] = None,
204204
allow_redirection: bool = True, multiline_commands: Optional[List[str]] = None,
205205
terminators: Optional[List[str]] = None, shortcuts: Optional[Dict[str, str]] = None,

0 commit comments

Comments
 (0)