From fa57f53e1e07438a0fd3a25994fcbb2f27582e57 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Thu, 9 Jan 2025 11:05:11 -0500 Subject: [PATCH] Reformat --- py-polars/tests/unit/io/test_scan.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/py-polars/tests/unit/io/test_scan.py b/py-polars/tests/unit/io/test_scan.py index df21d799b9a..4f19698488f 100644 --- a/py-polars/tests/unit/io/test_scan.py +++ b/py-polars/tests/unit/io/test_scan.py @@ -925,9 +925,8 @@ def test_predicate_stats_eval_nested_binary() -> None: pl.scan_parquet(bufs) # The literal eval depth limit is 4 - # * crates/polars-expr/src/expressions/mod.rs::PhysicalExpr::evaluate_inline - .filter( - pl.col("x") == pl.lit("222").str.slice(0, 1).cast(pl.Int64) - ).collect() + .filter(pl.col("x") == pl.lit("222").str.slice(0, 1).cast(pl.Int64)) + .collect() ), pl.DataFrame({"x": [2]}), )