Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion awswrangler/s3/_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ def _apply_partitions(df: pd.DataFrame, dataset: bool, path: str, path_root: Opt
return df
if dataset is True and path_root is None:
raise exceptions.InvalidArgument("A path_root is required when dataset=True.")
path_root = cast(str, path_root)
partitions: Dict[str, str] = _extract_partitions_from_path(path_root=path_root, path=path)
_logger.debug("partitions: %s", partitions)
count: int = len(df.index)
Expand Down
Loading