From 2532c0f09fff4fda7f56a6d6a5bd161612315097 Mon Sep 17 00:00:00 2001 From: Eero Lihavainen Date: Wed, 15 Nov 2023 21:30:05 +0200 Subject: [PATCH] fix formatting --- python/pyarrow/tests/test_dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyarrow/tests/test_dataset.py b/python/pyarrow/tests/test_dataset.py index 55e3d7442714f..3c56947da3bcb 100644 --- a/python/pyarrow/tests/test_dataset.py +++ b/python/pyarrow/tests/test_dataset.py @@ -1003,7 +1003,7 @@ def test_make_fragment_with_size(s3_example_simple): fragments_with_size = [file_format.make_fragment(path, fs, file_size=size) for path, size in zip(paths, sizes_true)] dataset_with_size = ds.FileSystemDataset( - fragments_with_size, format=file_format, schema=table.schema, filesystem=fs + fragments_with_size, format=file_format, schema=table.schema, filesystem=fs ) tbl = dataset.to_table() assert tbl.equals(table)