Josverl / micropython-stubber

Generate and maintain stubs for different MicroPython ports to use with VSCode and Pylance, PyRight, Thonny, PyCharm or MyPy
https://micropython-stubber.readthedocs.io
Other
175 stars 14 forks source link

Consider the "Any trick" #484

Open Josverl opened 9 months ago

Josverl commented 9 months ago

Sometimes the stubs lead to type narrowing that require additional asserts just to satisfy the type checkers.

str | None

Typeshed has a recommendation for that

https://github.com/python/typeshed/blob/main/CONTRIBUTING.md#the-any-trick

see if/where this is applicable to the micropython stubs as well