Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Oct 28, 2023
1 parent 0ff1386 commit 463ca3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/series/test_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ def test_power() -> None:
assert_series_equal(a**a, pl.Series([1.0, 4.0], dtype=Float64))
assert_series_equal(b**b, pl.Series([None, 4.0], dtype=Float64))
assert_series_equal(a**b, pl.Series([None, 4.0], dtype=Float64))
assert_series_equal(a ** None, pl.Series([None] * len(a), dtype=Float64))
assert_series_equal(a**None, pl.Series([None] * len(a), dtype=Float64))
with pytest.raises(TypeError):
c**2
with pytest.raises(pl.ColumnNotFoundError):
Expand Down

0 comments on commit 463ca3a

Please sign in to comment.