From 10974f29f3b1729b2af532a2eff4ce91e84d2783 Mon Sep 17 00:00:00 2001 From: Przemek Wirkus Date: Wed, 9 Jul 2014 13:30:54 +0100 Subject: [PATCH] Removed unused 'pass' statement --- workspace_tools/host_tests/host_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace_tools/host_tests/host_test.py b/workspace_tools/host_tests/host_test.py index cc9a1ea37d..cf1dc0d7dd 100644 --- a/workspace_tools/host_tests/host_test.py +++ b/workspace_tools/host_tests/host_test.py @@ -83,7 +83,6 @@ class Mbed: serial.setBreak(False) except: result = False - pass return result def reset(self): @@ -98,6 +97,7 @@ class Mbed: self.extra_serial.flushInput() self.extra_serial.flushOutput() + class Test: def __init__(self): self.mbed = Mbed()