Skip to content

Commit c8b6ce5

Browse files
committed
Enable type-ignore in array.py now that mypy 1.14 is released
1 parent a21bc66 commit c8b6ce5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pytato/array.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -719,8 +719,7 @@ def _binary_op(
719719

720720
if not isinstance(other, (Array, *SCALAR_CLASSES)):
721721
# https://github.com/python/mypy/issues/4791
722-
# This type-ignore will become necessary with mypy 1.14.
723-
return NotImplemented # not-yet-type: ignore[no-any-return]
722+
return NotImplemented # type: ignore[no-any-return]
724723

725724
# }}}
726725

0 commit comments

Comments
 (0)