Skip to content

Commit cc509d1

Browse files
Bump mypy from 0.971 to 1.2.0 (#841)
* Bump mypy from 0.971 to 1.2.0 Bumps [mypy](https://github.com/python/mypy) from 0.971 to 1.2.0. - [Release notes](https://github.com/python/mypy/releases) - [Commits](python/mypy@v0.971...v1.2.0) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: update ignore category for newer mypy versions --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martijn Pieters <mj@zopatista.com>
1 parent ff38638 commit cc509d1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

requirements/lint.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
mypy==0.971; implementation_name=="cpython"
1+
mypy==1.2.0; implementation_name=="cpython"
22
pre-commit==3.2.2; python_version>="3.8"

yarl/_quoting.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
if not NO_EXTENSIONS: # pragma: no branch
1313
try:
14-
from ._quoting_c import _Quoter, _Unquoter # type: ignore[misc]
14+
from ._quoting_c import _Quoter, _Unquoter # type: ignore[assignment]
1515
except ImportError: # pragma: no cover
16-
from ._quoting_py import _Quoter, _Unquoter # type: ignore[misc]
16+
from ._quoting_py import _Quoter, _Unquoter # type: ignore[assignment]
1717
else:
18-
from ._quoting_py import _Quoter, _Unquoter # type: ignore[misc]
18+
from ._quoting_py import _Quoter, _Unquoter # type: ignore[assignment]

0 commit comments

Comments
 (0)