Skip to content

Commit 0325998

Browse files
committed
lint once more
1 parent 6f6e0f6 commit 0325998

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pandas/tests/indexing/multiindex/test_multiindex.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
CategoricalDtype,
99
DataFrame,
1010
Index,
11-
Interval,
1211
IntervalIndex,
1312
MultiIndex,
1413
Series,
@@ -297,11 +296,10 @@ def test_multiindex_assign_alignment_with_non_string_dtype(self):
297296

298297
def test_multiindex_with_interval_index(self):
299298
# for https://github.com/pandas-dev/pandas/issues/25298
300-
intIndex = IntervalIndex.from_arrays([1,5,8,13,16], [4,9,12,17,20])
299+
intIndex = IntervalIndex.from_arrays([1, 5, 8, 13, 16], [4, 9, 12, 17, 20])
301300
multiIndex = MultiIndex.from_arrays([["a", "a", "b", "b", "c"], intIndex])
302-
data = [(1,2),(3,4),(5,6),(7,8), (9,10)]
301+
data = [(1, 2), (3, 4), (5, 6), (7, 8), (9, 10)]
303302
df = DataFrame(data, index=multiIndex)
304303
series1 = df.loc[("b", 16)]
305304
series2 = df.loc["b"].loc[16]
306305
tm.assert_equal(series1.array, series2.array)
307-

0 commit comments

Comments
 (0)