Skip to content

Commit f42f9b4

Browse files
Bump mypy from 1.5.1 to 1.6.0 (#933)
* Bump mypy from 1.5.1 to 1.6.0 Bumps [mypy](https://github.com/python/mypy) from 1.5.1 to 1.6.0. - [Commits](python/mypy@v1.5.1...v1.6.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Update redis_storage.py --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sam Bull <[email protected]>
1 parent 67a870d commit f42f9b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

aiohttp_session/redis_storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from redis import VERSION as REDIS_VERSION, asyncio as aioredis
1111
except ImportError: # pragma: no cover
1212
try:
13-
import aioredis # type: ignore[import, no-redef] # noqa: I900
13+
import aioredis # type: ignore[import-not-found, no-redef] # noqa: I900
1414
except ImportError:
1515
aioredis = None # type: ignore[assignment]
1616
else:

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ flake8-bandit==4.1.1
55
flake8-bugbear==23.9.16
66
flake8-import-order==0.18.2
77
flake8-requirements==1.7.8
8-
mypy==1.5.1
8+
mypy==1.6.0
99
pep257==0.7.0
1010
pre-commit==3.4.0
1111
sphinx==7.2.6

0 commit comments

Comments
 (0)