Skip to content

Commit 3f13b30

Browse files
committed
fix pre-commit
1 parent de89574 commit 3f13b30

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pandas/tests/apply/test_frame_apply.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1724,9 +1724,11 @@ def test_numba_raw_apply_with_args(engine):
17241724
if engine == "numba":
17251725
# GH:58712
17261726
df = DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]})
1727-
result = df.apply(lambda x, a, b: x + a + b, args=(1, 2), engine=engine, raw=True)
1728-
# note:
1729-
# result is always float dtype, see core._numba.executor.py:generate_apply_looper
1727+
result = df.apply(
1728+
lambda x, a, b: x + a + b, args=(1, 2), engine=engine, raw=True
1729+
)
1730+
# note: result is always float dtype,
1731+
# see core._numba.executor.py:generate_apply_looper
17301732
expected = df + 3.0
17311733
tm.assert_frame_equal(result, expected)
17321734

0 commit comments

Comments
 (0)