diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-04 12:40:51 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-04 12:40:51 +0100 |
commit | cda363a036f550707ed48d94e1be3ad54dda90b6 (patch) | |
tree | 1719b19ce5a3a1fa191ad1ecfe8a49082f05ad5f /tests/pyb/accel.py | |
parent | c327c0de5d7a07cc0afa2fbad5aa33f59d90aad0 (diff) | |
download | micropython-cda363a036f550707ed48d94e1be3ad54dda90b6.tar.gz micropython-cda363a036f550707ed48d94e1be3ad54dda90b6.zip |
tests, pyb: Add 'import pyb' when needed.
Diffstat (limited to 'tests/pyb/accel.py')
-rw-r--r-- | tests/pyb/accel.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/pyb/accel.py b/tests/pyb/accel.py index 13f53b33c0..e5a1a2ed7a 100644 --- a/tests/pyb/accel.py +++ b/tests/pyb/accel.py @@ -1,3 +1,5 @@ +import pyb + accel = pyb.Accel() print(accel) accel.x() |