Skip to content

Commit 94d6320

Browse files
passing params (#1637)
1 parent f755952 commit 94d6320

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

awswrangler/s3/_write_parquet.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,8 @@ def to_parquet( # pylint: disable=too-many-arguments,too-many-locals,too-many-b
711711
"projection_values": projection_values,
712712
"projection_intervals": projection_intervals,
713713
"projection_digits": projection_digits,
714-
"projection_storage_location_template": None,
714+
"projection_formats": projection_formats,
715+
"projection_storage_location_template": projection_storage_location_template,
715716
"catalog_id": catalog_id,
716717
"catalog_table_input": catalog_table_input,
717718
}

awswrangler/s3/_write_text.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,8 @@ def to_csv( # pylint: disable=too-many-arguments,too-many-locals,too-many-state
571571
"projection_values": projection_values,
572572
"projection_intervals": projection_intervals,
573573
"projection_digits": projection_digits,
574-
"projection_storage_location_template": None,
574+
"projection_formats": projection_formats,
575+
"projection_storage_location_template": projection_storage_location_template,
575576
"catalog_table_input": catalog_table_input,
576577
"catalog_id": catalog_id,
577578
"compression": pandas_kwargs.get("compression"),
@@ -986,7 +987,8 @@ def to_json( # pylint: disable=too-many-arguments,too-many-locals,too-many-stat
986987
"projection_values": projection_values,
987988
"projection_intervals": projection_intervals,
988989
"projection_digits": projection_digits,
989-
"projection_storage_location_template": None,
990+
"projection_formats": projection_formats,
991+
"projection_storage_location_template": projection_storage_location_template,
990992
"catalog_table_input": catalog_table_input,
991993
"catalog_id": catalog_id,
992994
"compression": compression,

0 commit comments

Comments
 (0)