As per PEP 484 discussion, it should be possible to use `# type: ignore` to skip type checking in the rest of a file: ``` # type: ignore ... # ignore type errors here ``` Currently the comment can only be used to ignore errors on individual lines.