diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-31 23:13:27 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-31 23:13:27 -0500 |
commit | 076c9ebea10fba2a978d19057caccab9e8862ab4 (patch) | |
tree | a1ae525672109429e3a6e2fd7d5cc53f0b52106e /examples/python_scripting.py | |
parent | eb995fafdddc3de9632c3bcb05356e79ee46dc5c (diff) | |
download | cmd2-git-076c9ebea10fba2a978d19057caccab9e8862ab4.tar.gz |
Attempt to fix remaining black failures
Diffstat (limited to 'examples/python_scripting.py')
-rwxr-xr-x | examples/python_scripting.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/python_scripting.py b/examples/python_scripting.py index 9465f697..3aa61467 100755 --- a/examples/python_scripting.py +++ b/examples/python_scripting.py @@ -55,8 +55,8 @@ class CmdLineApp(cmd2.Cmd): @cmd2.with_argument_list def do_cd(self, arglist): """Change directory. - Usage: - cd <new_dir> + Usage: + cd <new_dir> """ # Expect 1 argument, the directory to change to if not arglist or len(arglist) != 1: |