From e81f6ddb29dd3fa100d9048aa8f0c560c4ae7cd5 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Fri, 18 Oct 2019 20:00:42 +0300 Subject: [PATCH] Remove unused type: ignore --- aiohttp/http_exceptions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aiohttp/http_exceptions.py b/aiohttp/http_exceptions.py index d19f1eca87a..3c8b0d830ee 100644 --- a/aiohttp/http_exceptions.py +++ b/aiohttp/http_exceptions.py @@ -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):