Skip to content

Commit

Permalink
Remove unused type: ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 18, 2019
1 parent 4fbcfd5 commit e81f6dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aiohttp/http_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ def __init__(self, line: str='') -> None:
self.args = (line,)
self.line = line

__str__ = Exception.__str__ # type: ignore
__repr__ = Exception.__repr__ # type: ignore
__str__ = Exception.__str__
__repr__ = Exception.__repr__


class InvalidURLError(BadHttpMessage):
Expand Down

0 comments on commit e81f6dd

Please sign in to comment.