diff mbox

[6/9] support/testing: fix code style in emulator

Message ID 20170629024549.30484-7-ricardo.martincoski@gmail.com
State Accepted
Headers show

Commit Message

Ricardo Martincoski June 29, 2017, 2:45 a.m. UTC
Remove unused import.
Use 2 empty lines before a class.

Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
---
This patch depends on previous ones because some code with style issues
were replaced by equivalent code.

After this patch
$ flake8 support/testing/infra/emulator.py
shows no error or warning.
---
 support/testing/infra/emulator.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/support/testing/infra/emulator.py b/support/testing/infra/emulator.py
index 7407309a29..0f925fc9fb 100644
--- a/support/testing/infra/emulator.py
+++ b/support/testing/infra/emulator.py
@@ -1,7 +1,7 @@ 
 import pexpect
 
 import infra
-import infra.basetest
+
 
 class Emulator(object):