Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonspeed committed Jan 9, 2025
1 parent 014eaa6 commit fa57f53
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions py-polars/tests/unit/io/test_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]}),
)
Expand Down

0 comments on commit fa57f53

Please sign in to comment.