kmk_firmware/typings/micropython.pyi
sofubi 2c69d0e197 Start work on types
Bring in typings folder for adafruit_ble and micropython
2021-08-13 23:10:43 -04:00

6 lines
72 B
Python

from typing import TypeVar
T = TypeVar('T')
def const(x: T) -> T: ...