We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21d60a8 commit 16afc06Copy full SHA for 16afc06
uasyncio/uasyncio/__init__.py
@@ -55,7 +55,7 @@ def wait(self, delay):
55
if DEBUG and __debug__:
56
log.debug("poll.wait(%d)", delay)
57
# We need one-shot behavior (second arg of 1 to .poll())
58
- res = self.poller.poll(delay, 1)
+ res = self.poller.ipoll(delay, 1)
59
#log.debug("poll result: %s", res)
60
# Remove "if res" workaround after
61
# https://github.com/micropython/micropython/issues/2716 fixed.
0 commit comments