Skip to content

Commit 4e550d4

Browse files
authored
Merge pull request #8791 from python-pillow/renovate/mypy-1.x
Update dependency mypy to v1.15.0
2 parents 1a62ef9 + d627229 commit 4e550d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.ci/requirements-mypy.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mypy==1.14.1
1+
mypy==1.15.0
22
IceSpringPySideStubs-PyQt6
33
IceSpringPySideStubs-PySide6
44
ipython

src/PIL/TiffImagePlugin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def limit_rational(self, max_denominator: int) -> tuple[IntegralLike, int]:
404404
def __repr__(self) -> str:
405405
return str(float(self._val))
406406

407-
def __hash__(self) -> int:
407+
def __hash__(self) -> int: # type: ignore[override]
408408
return self._val.__hash__()
409409

410410
def __eq__(self, other: object) -> bool:

0 commit comments

Comments
 (0)