Skip to content

Commit f0f77d3

Browse files
committed
🐴new mypy false negative
1 parent 7fdf42f commit f0f77d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/special/test_ufuncs.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ assert_type(sp.cbrt([0]), _Float64ND)
6161
assert_type(sp.cbrt(0.0), np.float64)
6262
assert_type(sp.cbrt([0.0]), _Float64ND)
6363
sp.cbrt(0j) # type:ignore[call-overload] # pyright: ignore[reportArgumentType, reportCallIssue]
64-
sp.cbrt([0j]) # type:ignore[arg-type] # pyright: ignore[reportArgumentType, reportCallIssue]
64+
sp.cbrt([0j]) # pyright: ignore[reportArgumentType, reportCallIssue]
6565
assert_type(sp.cbrt.at(_b1_nd, _i), None)
6666
assert_type(sp.cbrt.at(_f8_nd, _i), None)
6767
sp.cbrt.at(_c16, _i) # type:ignore[arg-type] # pyright: ignore[reportArgumentType]

0 commit comments

Comments
 (0)