Skip to content

Commit de3b498

Browse files
committed
rm formatting
1 parent 28cd091 commit de3b498

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

pyiceberg/io/pyarrow.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2800,11 +2800,9 @@ def _determine_partitions(spec: PartitionSpec, schema: Schema, arrow_table: pa.T
28002800
functools.reduce(
28012801
operator.and_,
28022802
[
2803-
(
2804-
pc.field(partition_field_name) == unique_partition[partition_field_name]
2805-
if unique_partition[partition_field_name] is not None
2806-
else pc.field(partition_field_name).is_null()
2807-
)
2803+
pc.field(partition_field_name) == unique_partition[partition_field_name]
2804+
if unique_partition[partition_field_name] is not None
2805+
else pc.field(partition_field_name).is_null()
28082806
for field, partition_field_name in zip(spec.fields, partition_fields)
28092807
],
28102808
)

0 commit comments

Comments
 (0)