You can ignore type errors with # type: ignore as of version 0.2 (see issue #500, Ignore specific lines):
PEP 484 uses
# type: ignorefor ignoring type errors on particular lines …Also, using
# type: ignoreclose to the top of a file [skips] checking that file altogether.Source: mypy#500. See also the mypy documentation.