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
If mypy can't find a stub or implementation for a module, it says No module named 'x'. This can be pretty confusing for first-time users. Instead, we should say something like No implementation or stub file found for module 'x'.
Optionally, give a hint about MYPYPATH and the stub generator as well.
The text was updated successfully, but these errors were encountered:
Now mypy tries to detect std library modules and 3rd party modules without stubs (at least the common ones) and gives a different error message based on the type of the module/package.
If mypy can't find a stub or implementation for a module, it says
No module named 'x'
. This can be pretty confusing for first-time users. Instead, we should say something likeNo implementation or stub file found for module 'x'
.Optionally, give a hint about
MYPYPATH
and the stub generator as well.The text was updated successfully, but these errors were encountered: