Skip to content

Commit

Permalink
fix: flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
pnuckowski committed Dec 11, 2024
1 parent d4eabd3 commit 4d86e13
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions aioresponses/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
RequestInfo, AIOHTTP_VERSION,
)


_FuncT = TypeVar("_FuncT", bound=Callable[..., Any])


Expand Down Expand Up @@ -224,7 +223,7 @@ def __repr__(self) -> str:
class aioresponses(object):
"""Mock aiohttp requests made by ClientSession."""
_matches = None # type: Dict[str, RequestMatch]
_responses = None # type: List[ClientResponse]
_responses: List[ClientResponse] = None
requests = None # type: Dict

def __init__(self, **kwargs: Any):
Expand Down
5 changes: 2 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pip
wheel
flake8==3.8.3
flake8==5.0.4
tox==3.19.0
coverage==5.2.1
Sphinx==1.5.6
Expand All @@ -10,5 +10,4 @@ pytest-html==2.1.1
ddt==1.4.1
typing
asynctest==0.13.0
yarl==1.9.4
setuptools==69.5.1
yarl==1.9.4
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ universal = 1

[flake8]
exclude = docs
max-line-length = 120

[tool:pytest]
testpaths = tests
1 change: 1 addition & 0 deletions tests/test_aioresponses.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ async def test_returned_instance_and_status_code(self, m):
("http://example.com/", "/api?foo=bar#fragment")
)
@aioresponses()
@skipIf(condition=AIOHTTP_VERSION < Version('3.8.0'), reason='aiohttp must be >= 3.8.0')
async def test_base_url(self, base_url, relative_url, m):
m.get(self.url, status=200)
self.session = ClientSession(base_url=base_url)
Expand Down

0 comments on commit 4d86e13

Please sign in to comment.