Skip to content

Commit ccb4419

Browse files
author
Marco Gorelli
committed
Black autoformatting
1 parent fce6cc5 commit ccb4419

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pandas/tests/frame/test_explode.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -183,11 +183,13 @@ def test_usecase():
183183
(
184184
pd.DataFrame(
185185
{"col": [[1, 2], [3, 4]], "other_col": ["a", "b"]},
186-
pd.MultiIndex.from_arrays([[0, 0], [1, 1]], names=['foo', None]),
186+
pd.MultiIndex.from_arrays([[0, 0], [1, 1]], names=["foo", None]),
187187
),
188188
pd.DataFrame(
189189
{"col": [1, 2, 3, 4], "other_col": ["a", "a", "b", "b"]},
190-
pd.MultiIndex.from_arrays([[0, 0, 0, 0], [1, 1, 1, 1]], names=['foo', None]),
190+
pd.MultiIndex.from_arrays(
191+
[[0, 0, 0, 0], [1, 1, 1, 1]], names=["foo", None]
192+
),
191193
dtype=object,
192194
),
193195
),

0 commit comments

Comments
 (0)