Co-authored-by: Thomas Grainger <tagrain@gmail.com> Co-authored-by: Marcelo Trylesinski <marcelotryle@gmail.com>
8 lines
107 B
Python
8 lines
107 B
Python
from __future__ import annotations
|
|
|
|
import asyncio
|
|
|
|
|
|
class CustomLoop(asyncio.SelectorEventLoop):
|
|
pass
|