We don't want to disable checks for untyped imports project-wide, I think. The way to achieve that is to use the # type: ignore comment (the way Barbara had it), but a round of linting and black formatting reformatted the private annotator import lines. That moved the type ignore comment to the end of the parsed line, rather than the end of the "physical" line in the file, and mypy doesn't understand the comment if it's there.
We don't want to disable checks for untyped imports project-wide, I think. The way to achieve that is to use the
# type: ignore
comment (the way Barbara had it), but a round of linting and black formatting reformatted the private annotator import lines. That moved the type ignore comment to the end of the parsed line, rather than the end of the "physical" line in the file, and mypy doesn't understand the comment if it's there.:(