diff options
Diffstat (limited to 'extmod/uasyncio/funcs.py')
-rw-r--r-- | extmod/uasyncio/funcs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/uasyncio/funcs.py b/extmod/uasyncio/funcs.py index a76ab0d321..258948f73e 100644 --- a/extmod/uasyncio/funcs.py +++ b/extmod/uasyncio/funcs.py @@ -78,7 +78,7 @@ async def gather(*aws, return_exceptions=False): # Still some sub-tasks running. return # Gather waiting is done, schedule the main gather task. - core._task_queue.push_head(gather_task) + core._task_queue.push(gather_task) ts = [core._promote_to_task(aw) for aw in aws] for i in range(len(ts)): |