remove redundent type annotation

This commit is contained in:
Barak Y. Reif 2019-09-28 22:16:20 +03:00
parent d4b544daf3
commit e4cfaa6b68

View file

@ -40,7 +40,7 @@ class Requirement(object):
def fix_requirements(f): # type: (IO[bytes]) -> int
requirements = [] # type: List[Requirement]
before = list(f) # type: List[bytes]
before = list(f)
after = [] # type: List[bytes]
before_string = b''.join(before)