mirror of
https://github.com/W3SLAV/automicropython_nds.git
synced 2025-06-19 03:25:37 -04:00
9 lines
201 B
Python
9 lines
201 B
Python
# This module just allows `import uasyncio` to work. It lazy-loads from
|
|
# `asyncio` without duplicating its globals dict.
|
|
|
|
|
|
def __getattr__(attr):
|
|
import asyncio
|
|
|
|
return getattr(asyncio, attr)
|