We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mypy does not recognize munkres as a typed module due to lack of py.typed marker (empty file named py.typed at package root).
munkres
py.typed
Error:
Skipping analyzing "munkres": module is installed, but missing library stubs or py.typed marker Mypyimport-untyped See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports Mypynote
However, munkres is distributed as a single-file top-level Python module (munkres.py directly in site-packages).
munkres.py
site-packages
This PR has discussion of this (apparently unsupported) use case: python/typing#1333
The suggestion currently seems to be to start using a directory and add the marker.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Mypy does not recognize
munkres
as a typed module due to lack ofpy.typed
marker (empty file namedpy.typed
at package root).Error:
However,
munkres
is distributed as a single-file top-level Python module (munkres.py
directly insite-packages
).This PR has discussion of this (apparently unsupported) use case: python/typing#1333
The suggestion currently seems to be to start using a directory and add the marker.
The text was updated successfully, but these errors were encountered: