Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 9, 2023
1 parent 0f5265d commit be94faa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xarray/tests/test_rolling.py
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,9 @@ def test_raise_no_warning_dask_rolling_assert_close(self, ds, name) -> None:

@requires_numbagg
class TestDatasetRollingExp:
@pytest.mark.parametrize("backend", ["numpy", pytest.param("dask", marks=requires_dask )], indirect=True)
@pytest.mark.parametrize(
"backend", ["numpy", pytest.param("dask", marks=requires_dask)], indirect=True
)
def test_rolling_exp(self, ds) -> None:
result = ds.rolling_exp(time=10, window_type="span").mean()
assert isinstance(result, Dataset)
Expand Down

0 comments on commit be94faa

Please sign in to comment.