diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2016-12-09 23:00:45 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2016-12-09 23:00:45 -0500 |
commit | a877819f54a95ba6add0c9cf10d94dd127b0b627 (patch) | |
tree | 72fb676a8268631821148ac2ca77df6c2079b3d8 /tests/test_transcript.py | |
parent | a0cdb91e54a5ebe790191d180a9091d367175d52 (diff) | |
download | cmd2-git-a877819f54a95ba6add0c9cf10d94dd127b0b627.tar.gz |
Whitespace change to be mostly PEP8 compliant
Diffstat (limited to 'tests/test_transcript.py')
-rw-r--r-- | tests/test_transcript.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_transcript.py b/tests/test_transcript.py index ebd13a59..dfb37da7 100644 --- a/tests/test_transcript.py +++ b/tests/test_transcript.py @@ -38,7 +38,7 @@ class CmdLineApp(Cmd): # self.stdout.write is better than "print", because Cmd can be # initialized with a non-standard output destination - do_say = do_speak # now "say" is a synonym for "speak" + do_say = do_speak # now "say" is a synonym for "speak" do_orate = do_speak # another synonym, but this one takes multi-line input @@ -46,7 +46,7 @@ class CmdLineApp(Cmd): def _cmdline_app(): c = CmdLineApp() c.stdout = StdOut() - #c.shortcuts.update({'&': 'speak', 'h': 'hello'}) + # c.shortcuts.update({'&': 'speak', 'h': 'hello'}) c.settable.append('maxrepeats Max number of `--repeat`s allowed') return c |