Add lint for unqualified type: ignore (#56290)

Summary:
The other half of https://github.com/pytorch/pytorch/issues/56272.

Pull Request resolved: https://github.com/pytorch/pytorch/pull/56290

Test Plan:
CI should pass on the tip of this PR, and we know that the lint works because the following CI runs (before this PR was finished) failed:

- https://github.com/pytorch/pytorch/runs/2384511062
- https://github.com/pytorch/pytorch/actions/runs/765036024

Reviewed By: seemethere

Differential Revision: D27867219

Pulled By: samestep

fbshipit-source-id: e648f07b6822867e70833e23ddafe7fb7eaca235
This commit is contained in:
Sam Estep
2021-04-21 08:06:05 -07:00
committed by Facebook GitHub Bot
parent 87a1ebc9cd
commit 75024e228c
151 changed files with 587 additions and 580 deletions

View File

@ -75,7 +75,7 @@ class Formatter(logging.Formatter):
else:
# I'm not sure why, but formatMessage doesn't show up
# even though it's in the typeshed for Python >3
return super().formatMessage(record) # type: ignore
return super().formatMessage(record)
def format(self, record: logging.LogRecord) -> str:
return self._filter(super().format(record))