Skip to content

Commit

Permalink
Remove unnecessary changes to unrelated files
Browse files Browse the repository at this point in the history
  • Loading branch information
raunakab committed Feb 12, 2025
1 parent 9bcb526 commit e63cea3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion daft/io/_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion daft/io/_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion daft/io/_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e63cea3

Please sign in to comment.