mypy: Remove superfluous older 'type: ignore' annotations.

This commit is contained in:
neiljp (Neil Pilgrim)
2017-08-06 17:01:59 -07:00
committed by Tim Abbott
parent 67f1a72aae
commit b782db48e1
12 changed files with 15 additions and 16 deletions

View File

@@ -21,7 +21,7 @@ except Exception:
# There isn't a good way to get at what the underlying poll implementation
# will be without actually constructing an IOLoop, so we just assume it will
# be epoll.
orig_poll_impl = select.epoll # type: ignore # There is no stub for select.epoll on python 3
orig_poll_impl = select.epoll
class InstrumentedPollIOLoop(PollIOLoop):
def initialize(self, **kwargs): # type: ignore # TODO investigate likely buggy monkey patching here