We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a157861 commit b19c5a3Copy full SHA for b19c5a3
pandas/io/formats/csvs.py
@@ -348,7 +348,7 @@ def _save(self, handle: IO[AnyStr]) -> None:
348
# in function "writer"
349
# error: Argument "quoting" to "writer" has incompatible type "int";
350
# expected "Literal[0, 1, 2, 3]"
351
- handle, # pyright: ignore[reportGeneralTypeIssues]
+ handle, # type: ignore[arg-type]
352
lineterminator=self.lineterminator,
353
delimiter=self.sep,
354
quoting=self.quoting, # type: ignore[arg-type]
0 commit comments