Skip to content

Commit 91520bc

Browse files
pep
1 parent b5ace05 commit 91520bc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/tests/indexing/test_loc.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2882,9 +2882,10 @@ def test_loc_set_int_dtype():
28822882
def test_loc_periodindex_3_levels():
28832883
# GH#24091
28842884
p_index = PeriodIndex(["20181101 1100", "20181101 1200", "20181102 1300",
2885-
"20181102 1400"], name='datetime', freq="B")
2885+
"20181102 1400"], name='datetime', freq="B")
28862886
mi_series = DataFrame([["A", "B", 1.0], ["A", "C", 2.0], ["Z", "Q", 3.0],
2887-
["W", "F", 4.0]], index=p_index, columns=["ONE", "TWO", "VALUES"])
2887+
["W", "F", 4.0]], index=p_index,
2888+
columns=["ONE", "TWO", "VALUES"])
28882889
mi_series = mi_series.set_index(["ONE", "TWO"], append=True)["VALUES"]
28892890
assert mi_series.loc[(p_index[0], "A", "B")] == 1.0
28902891

0 commit comments

Comments
 (0)