From e503d216f29701edb7038b4d3fb91c739e0f3aa6 Mon Sep 17 00:00:00 2001 From: coastalwhite Date: Tue, 23 Jul 2024 14:32:55 +0200 Subject: [PATCH] python format --- py-polars/tests/unit/io/test_parquet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/tests/unit/io/test_parquet.py b/py-polars/tests/unit/io/test_parquet.py index d6450aaefbaf..866f30ea7386 100644 --- a/py-polars/tests/unit/io/test_parquet.py +++ b/py-polars/tests/unit/io/test_parquet.py @@ -1230,7 +1230,7 @@ def test_read_byte_stream_split_arrays( def test_parquet_nested_null_array_17795(tmp_path: Path) -> None: filename = tmp_path / "nested_null.parquet" - pl.DataFrame([ {"struct": {"field": None}} ]).write_parquet(filename) + pl.DataFrame([{"struct": {"field": None}}]).write_parquet(filename) pq.read_table(filename)