I\'m using mypy in my python project for type checking. I\'m also using PyYAML for reading and writing the project configuration files. Unfortunately, when using the recommended
You can ignore type errors with # type: ignore as of version 0.2 (see issue #500, Ignore specific lines):
# type: ignore
PEP 484 uses # type: ignore for ignoring type errors on particular lines ... Also, using # type: ignore close to the top of a file [skips] checking that file altogether. Source: mypy#500
PEP 484 uses # type: ignore for ignoring type errors on particular lines ...
Also, using # type: ignore close to the top of a file [skips] checking that file altogether.
Source: mypy#500