Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
pnuckowski committed Oct 28, 2021
1 parent 7fcae85 commit be8625d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aioresponses/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ def normalize_url(url: 'Union[URL, str]') -> 'URL':
class RequestInfo(object):
__slots__ = ('url', 'method', 'headers', 'real_url')

def __init__(self, url: URL, method: str, headers: Dict, real_url: str):
def __init__(
self, url: URL, method: str, headers: Dict, real_url: str
):
self.url = url
self.method = method
self.headers = headers
Expand Down

0 comments on commit be8625d

Please # to comment.