Files
PiThermostat/.vscode/Pico-W-Stub/_asyncio.pyi
Ádám Kovács 36638e2dd1 MicroPython stuff
2023-11-07 14:00:27 +01:00

12 lines
405 B
Python

from _typeshed import Incomplete as Incomplete
class TaskQueue:
def push(self, *args, **kwargs) -> Incomplete: ...
def peek(self, *args, **kwargs) -> Incomplete: ...
def remove(self, *args, **kwargs) -> Incomplete: ...
def pop(self, *args, **kwargs) -> Incomplete: ...
def __init__(self, *argv, **kwargs) -> None: ...
class Task:
def __init__(self, *argv, **kwargs) -> None: ...