Skip to content

Commit d2b33ba

Browse files
Brian Schroederigorborgest
authored andcommitted
reformat for black
1 parent 1a5b928 commit d2b33ba

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

awswrangler/s3/_read.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,13 @@ def read_parquet_metadata(
846846
847847
"""
848848
return read_parquet_metadata_internal(
849-
path=path, dtype=dtype, sampling=sampling, dataset=dataset, path_suffix=path_suffix, use_threads=use_threads, boto3_session=boto3_session
849+
path=path,
850+
dtype=dtype,
851+
sampling=sampling,
852+
dataset=dataset,
853+
path_suffix=path_suffix,
854+
use_threads=use_threads,
855+
boto3_session=boto3_session,
850856
)[:2]
851857

852858

awswrangler/s3/_write.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,13 @@ def store_parquet_metadata( # pylint: disable=too-many-arguments
10591059
partitions_types: Optional[Dict[str, str]]
10601060
partitions_values: Optional[Dict[str, List[str]]]
10611061
columns_types, partitions_types, partitions_values = read_parquet_metadata_internal(
1062-
path=path, dtype=dtype, sampling=sampling, dataset=dataset, path_suffix=path_suffix, use_threads=use_threads, boto3_session=session
1062+
path=path,
1063+
dtype=dtype,
1064+
sampling=sampling,
1065+
dataset=dataset,
1066+
path_suffix=path_suffix,
1067+
use_threads=use_threads,
1068+
boto3_session=session,
10631069
)
10641070
_logger.debug("columns_types: %s", columns_types)
10651071
_logger.debug("partitions_types: %s", partitions_types)

0 commit comments

Comments
 (0)