Skip to content

Commit 9ec167e

Browse files
smeyerreion-elgreco
authored andcommitted
Fix formatting
Signed-off-by: Sam Meyer-Reed <smeyerreed@gmail.com>
1 parent 9f631b5 commit 9ec167e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

python/tests/test_table_read.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,9 @@ def test_read_partitioned_table_with_primitive_type_partition_filters():
302302
assert all(year == "2020" for year in result_year_in["year"])
303303

304304
partitions_bool_true_only = [("is_active", "in", [True])]
305-
result_bool_true_only = dt.to_pyarrow_dataset(partitions_bool_true_only).to_table().to_pydict()
305+
result_bool_true_only = (
306+
dt.to_pyarrow_dataset(partitions_bool_true_only).to_table().to_pydict()
307+
)
306308
assert len(result_bool_true_only["id"]) == 8
307309
assert all(is_active == "true" for is_active in result_bool_true_only["is_active"])
308310

0 commit comments

Comments
 (0)