diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-02-14 14:45:27 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-02-14 14:45:27 +0100 |
commit | 6746cf5f546bedd0486edd23d5253759920e1448 (patch) | |
tree | 1875b08e96662663cb8228430ea08395dfbe5d5c /test/test_console_help.py | |
parent | efcfc62b73ac484ed25727f476c7ad0bb25817d5 (diff) | |
download | mitmproxy-6746cf5f546bedd0486edd23d5253759920e1448.tar.gz mitmproxy-6746cf5f546bedd0486edd23d5253759920e1448.tar.bz2 mitmproxy-6746cf5f546bedd0486edd23d5253759920e1448.zip |
autoflake
Diffstat (limited to 'test/test_console_help.py')
-rw-r--r-- | test/test_console_help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_console_help.py b/test/test_console_help.py index 32d94247..42862af7 100644 --- a/test/test_console_help.py +++ b/test/test_console_help.py @@ -28,7 +28,7 @@ class TestHelp: assert h.helptext() def test_keypress(self): - master = DummyMaster() + DummyMaster() h = help.HelpView([1, 2, 3]) assert not h.keypress((0, 0), "q") assert not h.keypress((0, 0), "?") |