summaryrefslogtreecommitdiff
path: root/tests/pyb/pyb_f405.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pyb/pyb_f405.py')
-rw-r--r--tests/pyb/pyb_f405.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/pyb/pyb_f405.py b/tests/pyb/pyb_f405.py
index f49dd1bc7..243381056 100644
--- a/tests/pyb/pyb_f405.py
+++ b/tests/pyb/pyb_f405.py
@@ -2,8 +2,8 @@
import os, pyb
-if not 'STM32F405' in os.uname().machine:
- print('SKIP')
+if not "STM32F405" in os.uname().machine:
+ print("SKIP")
raise SystemExit
print(pyb.freq())
@@ -15,4 +15,3 @@ try:
i2c.recv(1, 1)
except OSError as e:
print(repr(e))
-