Skip to content

Commit

Permalink
_uasyncio -> _asyncio
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalbert committed Feb 22, 2022
1 parent 28ef812 commit a38c4c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asyncio/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# Import TaskQueue and Task, preferring built-in C code over Python code
try:
from _uasyncio import TaskQueue, Task
from _asyncio import TaskQueue, Task
except:
from .task import TaskQueue, Task

Expand Down

0 comments on commit a38c4c6

Please sign in to comment.