Skip to content

Commit ceb8178

Browse files
committed
fix pre-commit
1 parent c75e0b7 commit ceb8178

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/window/test_numba.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,9 @@ def f(x):
304304

305305
@td.skip_if_no("numba")
306306
def test_invalid_kwargs_nopython():
307-
with pytest.raises(NumbaUtilError, match="numba does not support keyword-only arguments"):
307+
with pytest.raises(
308+
NumbaUtilError, match="numba does not support keyword-only arguments"
309+
):
308310
Series(range(1)).rolling(1).apply(
309311
lambda x: x, kwargs={"a": 1}, engine="numba", raw=True
310312
)

0 commit comments

Comments
 (0)