Check that import target can be found [import]
Mypy generates an error if it can’t find the source code or a stub filefor an imported module.
Example:
- # Error: Cannot find implementation or library stub for module named 'acme' [import]
- import acme
See Missing imports for how to work around these errors.