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:

  1. # Error: Cannot find implementation or library stub for module named 'acme' [import]
  2. import acme

See Missing imports for how to work around these errors.