Skip to content

Commit

Permalink
really?
Browse files Browse the repository at this point in the history
  • Loading branch information
agossard committed Aug 3, 2024
1 parent 04c7c2b commit 5b25b45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion py-polars/tests/unit/operations/test_interpolate_by.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ def test_interpolate_by_trailing_nulls() -> None:
@pytest.mark.parametrize("x_dtype", [pl.Date, pl.Float64])
def test_interpolate_vs_numpy(data: st.DataObject, x_dtype: pl.DataType) -> None:
if x_dtype == pl.Float64:
by_strategy = st.floats(allow_nan=False, allow_infinity=False, allow_subnormal=False)
by_strategy = st.floats(
allow_nan=False, allow_infinity=False, allow_subnormal=False
)
else:
by_strategy = None

Expand Down

0 comments on commit 5b25b45

Please sign in to comment.