Skip to content

Commit db6c9fb

Browse files
author
Paul Sokolovsky
committed
uasyncio.core: Follow builtin "time" module rename to "utime".
1 parent 14b6b69 commit db6c9fb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

uasyncio.core/uasyncio/core.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
import time
1+
try:
2+
import utime as time
3+
except ImportError:
4+
import time
25
import uheapq as heapq
36
import logging
47

0 commit comments

Comments
 (0)