From 06a69f17309d7cdc9bfb6705cb4151d5b606db58 Mon Sep 17 00:00:00 2001 From: jianfengmao Date: Tue, 23 Nov 2021 16:41:20 -0700 Subject: [PATCH] Fixed a typo in the docstring of write_csv --- pyintegration/deephaven2/csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyintegration/deephaven2/csv.py b/pyintegration/deephaven2/csv.py index 977fadafc75..9dab31f9a4d 100644 --- a/pyintegration/deephaven2/csv.py +++ b/pyintegration/deephaven2/csv.py @@ -116,7 +116,7 @@ def read(path: str, def write(table: Table, path: str, cols: List[str] = []) -> None: - """ WriteC a table to a standard CSV file. + """ Write a table to a standard CSV file. Args: table (Table): the source table