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
Package is using type hinting in its code, which is really great.
However, when using this package in my own application/package and running mypy on my code base, mypy complains the package does not export type hints.
Package is using type hinting in its code, which is really great.
However, when using this package in my own application/package and running
mypy
on my code base,mypy
complains the package does not export type hints.Adding a
py.typed
marker file would allowmypy
to recognize the type hints.Details in here: https://peps.python.org/pep-0561/#packaging-type-information
The text was updated successfully, but these errors were encountered: