Skip to content

Commit

Permalink
roll back line_terminator changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hanne-opseth-rygg-4ss committed Jan 25, 2024
1 parent 49eb648 commit 500a9ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fourinsight/engineroom/utils/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def push(self):
self._handler.truncate()
try:
self._dataframe.to_csv(
self._handler, sep=",", index=True, lineterminator="\n"
self._handler, sep=",", index=True, line_terminator="\n"
)
except TypeError: # for backward compatibility (remove after 2024-06-01)
self._dataframe.to_csv(
Expand Down

0 comments on commit 500a9ef

Please sign in to comment.