We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb0e3ba commit bc39129Copy full SHA for bc39129
1 file changed
tests/extmod/machine1.py
@@ -1,7 +1,10 @@
1
# test machine module
2
3
try:
4
- import machine
+ try:
5
+ import umachine as machine
6
+ except ImportError:
7
+ import machine
8
except ImportError:
9
print("SKIP")
10
import sys
0 commit comments