summaryrefslogtreecommitdiff
path: root/tests/micropython/memstats.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/micropython/memstats.py')
-rw-r--r--tests/micropython/memstats.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/micropython/memstats.py b/tests/micropython/memstats.py
index 78e4d2473..dee3a4ce2 100644
--- a/tests/micropython/memstats.py
+++ b/tests/micropython/memstats.py
@@ -3,8 +3,8 @@
import micropython
# these functions are not always available
-if not hasattr(micropython, 'mem_total'):
- print('SKIP')
+if not hasattr(micropython, "mem_total"):
+ print("SKIP")
else:
t = micropython.mem_total()
c = micropython.mem_current()