From d3bf621a55ba622566652fdb0bea6ecfde36b7f0 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Tue, 17 Oct 2023 21:54:58 -0400 Subject: [PATCH] docs: Document that the lineterminator defaults to the newline character, closes #669 --- agate/table/to_csv.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/agate/table/to_csv.py b/agate/table/to_csv.py index e667ec48..addf1681 100644 --- a/agate/table/to_csv.py +++ b/agate/table/to_csv.py @@ -8,6 +8,8 @@ def to_csv(self, path, **kwargs): `kwargs` will be passed through to the CSV writer. + The ``lineterminator`` defaults to the newline character (LF, ``\n``). + :param path: Filepath or file-like object to write to. """