Skip to content

Commit 7d7e401

Browse files
committed
fix: mypy
1 parent 5da6b1c commit 7d7e401

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/series/arithmetic/str/test_mul.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def test_mul_py_scalar(left: "pd.Series[str]") -> None:
5858
if TYPE_CHECKING_INVALID_USAGE:
5959
left.mul(f) # type: ignore[arg-type] # pyright: ignore[reportArgumentType,reportCallIssue]
6060
left.mul(c) # type: ignore[arg-type] # pyright: ignore[reportArgumentType,reportCallIssue]
61-
left.mul(s) # type: ignore[arg-type] # pyright: ignore[reportArgumentType,reportCallIssue]
61+
left.mul(s) # type: ignore[call-overload] # pyright: ignore[reportArgumentType,reportCallIssue]
6262
left.mul(d) # type: ignore[arg-type] # pyright: ignore[reportArgumentType,reportCallIssue]
6363

6464
if PD_LTE_23:
@@ -67,7 +67,7 @@ def test_mul_py_scalar(left: "pd.Series[str]") -> None:
6767
if TYPE_CHECKING_INVALID_USAGE:
6868
left.rmul(f) # type: ignore[arg-type] # pyright: ignore[reportArgumentType,reportCallIssue]
6969
left.rmul(c) # type: ignore[arg-type] # pyright: ignore[reportArgumentType,reportCallIssue]
70-
left.rmul(s) # type: ignore[arg-type] # pyright: ignore[reportArgumentType,reportCallIssue]
70+
left.rmul(s) # type: ignore[call-overload] # pyright: ignore[reportArgumentType,reportCallIssue]
7171
left.rmul(d) # type: ignore[arg-type] # pyright: ignore[reportArgumentType,reportCallIssue]
7272

7373

0 commit comments

Comments
 (0)