From d8c9c970f5456279a2f3e999054365ba13fb0236 Mon Sep 17 00:00:00 2001 From: matejcik Date: Wed, 7 Mar 2018 15:28:35 +0100 Subject: [PATCH] flake8: clean up imports from last commit --- trezorlib/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trezorlib/client.py b/trezorlib/client.py index 41fa248..e22c392 100644 --- a/trezorlib/client.py +++ b/trezorlib/client.py @@ -54,7 +54,7 @@ SCREENSHOT = False # make a getch function try: import termios - import sys, tty + import tty # POSIX system. Create and return a getch that manipulates the tty. # On Windows, termios will fail to import.