We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f631b5 commit 9ec167eCopy full SHA for 9ec167e
1 file changed
python/tests/test_table_read.py
@@ -302,7 +302,9 @@ def test_read_partitioned_table_with_primitive_type_partition_filters():
302
assert all(year == "2020" for year in result_year_in["year"])
303
304
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()
+ result_bool_true_only = (
306
+ dt.to_pyarrow_dataset(partitions_bool_true_only).to_table().to_pydict()
307
+ )
308
assert len(result_bool_true_only["id"]) == 8
309
assert all(is_active == "true" for is_active in result_bool_true_only["is_active"])
310
0 commit comments