From e63cea3e50110feed6e2477709de7b2cadc3212d Mon Sep 17 00:00:00 2001 From: Raunak Bhagat Date: Tue, 11 Feb 2025 18:14:51 -0800 Subject: [PATCH] Remove unnecessary changes to unrelated files --- daft/io/_csv.py | 2 +- daft/io/_json.py | 2 +- daft/io/_parquet.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/daft/io/_csv.py b/daft/io/_csv.py index 85975bf000..5c57c21918 100644 --- a/daft/io/_csv.py +++ b/daft/io/_csv.py @@ -56,7 +56,7 @@ def read_csv( file_path_column: Include the source path(s) as a column with this name. Defaults to None. hive_partitioning: Whether to infer hive_style partitions from file paths and include them as columns in the Dataframe. Defaults to False. - Returns: + returns: DataFrame: parsed DataFrame """ if isinstance(path, list) and len(path) == 0: diff --git a/daft/io/_json.py b/daft/io/_json.py index fe20593002..62bb02ac15 100644 --- a/daft/io/_json.py +++ b/daft/io/_json.py @@ -43,7 +43,7 @@ def read_json( file_path_column: Include the source path(s) as a column with this name. Defaults to None. hive_partitioning: Whether to infer hive_style partitions from file paths and include them as columns in the Dataframe. Defaults to False. - Returns: + returns: DataFrame: parsed DataFrame """ if isinstance(path, list) and len(path) == 0: diff --git a/daft/io/_parquet.py b/daft/io/_parquet.py index 960950c1d2..e133f2a505 100644 --- a/daft/io/_parquet.py +++ b/daft/io/_parquet.py @@ -51,7 +51,7 @@ def read_parquet( the amount of system resources (number of connections and thread contention) when running in the Ray runner. Defaults to None, which will let Daft decide based on the runner it is currently using. - Returns: + returns: DataFrame: parsed DataFrame """ io_config = context.get_context().daft_planning_config.default_io_config if io_config is None else io_config