Skip to content

Commit 78ca9c7

Browse files
authored
Bump mypy to 0.982 (#8831)
1 parent 721ad3d commit 78ca9c7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

requirements-tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ flake8-bugbear==22.7.1 # must match .pre-commit-config.yaml
55
flake8-noqa==1.2.9 # must match .pre-commit-config.yaml
66
flake8-pyi==22.8.2 # must match .pre-commit-config.yaml
77
isort==5.10.1 # must match .pre-commit-config.yaml
8-
mypy==0.981
8+
mypy==0.982
99
packaging==21.3
1010
pathspec
1111
pycln==2.1.1 # must match .pre-commit-config.yaml

stdlib/builtins.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1951,7 +1951,7 @@ if sys.version_info >= (3, 11):
19511951
@overload
19521952
def subgroup(self: Self, __condition: Callable[[_BaseExceptionT_co], bool]) -> Self | None: ...
19531953
@overload
1954-
def split( # type: ignore[misc] # complaints about overlapping overloads
1954+
def split(
19551955
self: Self, __condition: type[_BaseExceptionT] | tuple[type[_BaseExceptionT], ...]
19561956
) -> tuple[BaseExceptionGroup[_BaseExceptionT] | None, Self | None]: ...
19571957
@overload
@@ -1971,7 +1971,7 @@ if sys.version_info >= (3, 11):
19711971
@overload
19721972
def subgroup(self: Self, __condition: Callable[[_ExceptionT_co], bool]) -> Self | None: ...
19731973
@overload # type: ignore[override]
1974-
def split( # type: ignore[misc] # complaints about overlapping overloads
1974+
def split(
19751975
self: Self, __condition: type[_ExceptionT] | tuple[type[_ExceptionT], ...]
19761976
) -> tuple[ExceptionGroup[_ExceptionT] | None, Self | None]: ...
19771977
@overload

0 commit comments

Comments
 (0)