Skip to content

Commit b19c5a3

Browse files
committed
Fix type ignore
1 parent a157861 commit b19c5a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/formats/csvs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ def _save(self, handle: IO[AnyStr]) -> None:
348348
# in function "writer"
349349
# error: Argument "quoting" to "writer" has incompatible type "int";
350350
# expected "Literal[0, 1, 2, 3]"
351-
handle, # pyright: ignore[reportGeneralTypeIssues]
351+
handle, # type: ignore[arg-type]
352352
lineterminator=self.lineterminator,
353353
delimiter=self.sep,
354354
quoting=self.quoting, # type: ignore[arg-type]

0 commit comments

Comments
 (0)