From ead35ac6655cc3cb92efd8cefd342610890e7b68 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Fri, 20 Sep 2024 14:43:11 -0400 Subject: [PATCH] Fix formatting --- py-polars/tests/unit/operations/arithmetic/test_arithmetic.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/py-polars/tests/unit/operations/arithmetic/test_arithmetic.py b/py-polars/tests/unit/operations/arithmetic/test_arithmetic.py index 99bb5e89ff71..360def065ca1 100644 --- a/py-polars/tests/unit/operations/arithmetic/test_arithmetic.py +++ b/py-polars/tests/unit/operations/arithmetic/test_arithmetic.py @@ -646,7 +646,9 @@ def test_list_arithmetic_same_size( pl.Series("a", [[1, 2], [3]]), pl.Series("uint8", [[2, 2], [4]], dtype=pl.List(pl.UInt8())), pl.Series("nested", [[[1, 2]], [[3]]]), - pl.Series("nested_uint8", [[[1, 2]], [[3]]], dtype=pl.List(pl.List(pl.UInt8()))), + pl.Series( + "nested_uint8", [[[1, 2]], [[3]]], dtype=pl.List(pl.List(pl.UInt8())) + ), ] ) # Expr-based arithmetic: