Skip to content

Commit

Permalink
Mirror pandas' to_csv lineterminator instead of line_terminator
Browse files Browse the repository at this point in the history
(even though it looks a little weird perhaps)
  • Loading branch information
bartbroere authored Sep 7, 2023
1 parent eb69496 commit 3e3e21f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eland/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,7 @@ def to_csv(
compression="infer",
quoting=None,
quotechar='"',
line_terminator=None,
lineterminator=None,
chunksize=None,
tupleize_cols=None,
date_format=None,
Expand Down Expand Up @@ -1331,7 +1331,7 @@ def to_csv(
"compression": compression,
"quoting": quoting,
"quotechar": quotechar,
"line_terminator": line_terminator,
"lineterminator": lineterminator,
"chunksize": chunksize,
"date_format": date_format,
"doublequote": doublequote,
Expand Down

0 comments on commit 3e3e21f

Please sign in to comment.