Skip to content

Commit 8b331a4

Browse files
committed
testcase for pandas-dev#33168 code style changes
1 parent afcb9a6 commit 8b331a4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pandas/tests/groupby/test_quantile.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def test_timestamp_groupby_quantile():
372372
{"category": 174.1, "value": 374.1},
373373
{"category": 182.9, "value": 382.9},
374374
{"category": 190.5, "value": 390.5},
375-
{"category": 198.1, "value": 398.1}
375+
{"category": 198.1, "value": 398.1},
376376
],
377377
index=pd.MultiIndex.from_tuples(
378378
[
@@ -387,9 +387,10 @@ def test_timestamp_groupby_quantile():
387387
(pd.Timestamp("2020-04-19 02:00:00+00:00"), 0.9),
388388
(pd.Timestamp("2020-04-19 03:00:00+00:00"), 0.1),
389389
(pd.Timestamp("2020-04-19 03:00:00+00:00"), 0.5),
390-
(pd.Timestamp("2020-04-19 03:00:00+00:00"), 0.9)
391-
], names=("timestamp", None)
392-
)
390+
(pd.Timestamp("2020-04-19 03:00:00+00:00"), 0.9),
391+
],
392+
names=("timestamp", None),
393+
),
393394
)
394395

395396
tm.assert_frame_equal(result, expected)

0 commit comments

Comments
 (0)