Skip to content

Commit c63708f

Browse files
committed
Magic trailing comma
1 parent 82c854e commit c63708f

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

pandas/tests/resample/test_time_grouper.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -430,13 +430,7 @@ def test_groupby_resample_interpolate_with_apply_syntax_off_grid(groupy_test_df)
430430
)
431431

432432
expected = DataFrame(
433-
data={
434-
"price": [
435-
10.0,
436-
9.5,
437-
11.0,
438-
]
439-
},
433+
data={"price": [10.0, 9.5, 11.0]},
440434
index=expected_ind,
441435
)
442436
tm.assert_frame_equal(result, expected, check_names=False)

0 commit comments

Comments
 (0)