From 9696e5b9ea0bed544c7eb9815ae96948ee3c34e5 Mon Sep 17 00:00:00 2001 From: coastalwhite Date: Wed, 16 Oct 2024 09:23:39 +0200 Subject: [PATCH] pyfmt --- py-polars/tests/unit/io/test_parquet.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/py-polars/tests/unit/io/test_parquet.py b/py-polars/tests/unit/io/test_parquet.py index 2bcd1af220c0..71dfab8913d9 100644 --- a/py-polars/tests/unit/io/test_parquet.py +++ b/py-polars/tests/unit/io/test_parquet.py @@ -1993,7 +1993,9 @@ def test_nested_nonnullable_19158() -> None: @pytest.mark.parametrize("parallel", ["prefiltered", "columns", "row_groups", "auto"]) -def test_conserve_sortedness(monkeypatch: Any, capfd: Any, parallel: pl.ParallelStrategy) -> None: +def test_conserve_sortedness( + monkeypatch: Any, capfd: Any, parallel: pl.ParallelStrategy +) -> None: f = io.BytesIO() df = pl.DataFrame( @@ -2029,5 +2031,11 @@ def test_conserve_sortedness(monkeypatch: Any, capfd: Any, parallel: pl.Parallel # @NOTE: We don't conserve sortedness for anything except integers at the # moment. assert captured.count("Parquet conserved SortingColumn for column chunk of") == 2 - assert "Parquet conserved SortingColumn for column chunk of 'a' to Ascending" in captured - assert "Parquet conserved SortingColumn for column chunk of 'c' to Descending" in captured + assert ( + "Parquet conserved SortingColumn for column chunk of 'a' to Ascending" + in captured + ) + assert ( + "Parquet conserved SortingColumn for column chunk of 'c' to Descending" + in captured + )