Skip to content

Commit ef40b6d

Browse files
committed
linting
1 parent 6e3dd31 commit ef40b6d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

doc/source/user_guide/merging.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -733,10 +733,12 @@ using :meth:`Series.reset_index`.
733733
df = pd.DataFrame({"Let": ["A", "B", "C"], "Num": [1, 2, 3]})
734734
df
735735
736-
# The series has a multi-index with levels corresponding to columns in the DataFrame we want to merge with
736+
# The series has a multi-index with levels corresponding to columns in
737+
the DataFrame we want to merge with
737738
ser = pd.Series(
738739
['a', 'b', 'c', 'd', 'e', 'f'],
739-
index=pd.MultiIndex.from_arrays([["A", "B", "C"] * 2, [1, 2, 3, 4, 5, 6]], names=['Let', 'Num'])
740+
index=pd.MultiIndex.from_arrays([["A", "B", "C"] * 2,
741+
[1, 2, 3, 4, 5, 6]], names=['Let', 'Num'])
740742
)
741743
ser
742744

0 commit comments

Comments
 (0)