You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library's code contains type hints (great!) but those are not advertised so our code doesn't use them (it doesn't even look for them). According to PEP 561, you would need to package and distribute a py.typed file with your library for those types to be used easily.
Description
The library's code contains type hints (great!) but those are not advertised so our code doesn't use them (it doesn't even look for them). According to PEP 561, you would need to package and distribute a
py.typed
file with your library for those types to be used easily.Steps To Reproduce
Write some python code based on
algoliasearch
.In
requirements.txt
:In the code:
Running
mypy
doesn't yell, where it should actually fail with the following error:The text was updated successfully, but these errors were encountered: