Skip to content

Commit e25fafe

Browse files
committed
Revert "uasyncio.core: fix early return from wait()"
This reverts commit 99bccc9.
1 parent 5675c06 commit e25fafe

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

uasyncio.core/uasyncio/core.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ def run_forever(self):
5555
tnow = self.time()
5656
delay = t - tnow
5757
if delay > 0:
58-
self.call_at(t, cb, *args)
5958
self.wait(delay)
60-
continue
6159
else:
6260
self.wait(-1)
6361
# Assuming IO completion scheduled some tasks

0 commit comments

Comments
 (0)