Skip to content

Commit 882eefe

Browse files
committed
fix pre-commit
1 parent b9551fd commit 882eefe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/apply/test_frame_apply.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1727,8 +1727,8 @@ def test_numba_raw_apply_with_args(engine):
17271727
result = df.apply(
17281728
lambda x, a, b: x + a + b, args=(1, 2), engine=engine, raw=True
17291729
)
1730-
# note:
1731-
# result is always float dtype, see core._numba.executor.py:generate_apply_looper
1730+
# note: result is always float dtype,
1731+
# see core._numba.executor.py:generate_apply_looper
17321732
expected = df + 3.0
17331733
tm.assert_frame_equal(result, expected)
17341734

0 commit comments

Comments
 (0)