Skip to content

Commit 8199822

Browse files
committed
Linting indentation fix
1 parent 601c7f2 commit 8199822

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/source/user_guide/merging.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -735,11 +735,11 @@ using :meth:`Series.reset_index`.
735735
736736
# The series has a multi-index with levels corresponding to columns in
737737
# the DataFrame we want to merge with
738-
ser = pd.Series(
739-
['a', 'b', 'c', 'd', 'e', 'f'],
740-
index=pd.MultiIndex.from_arrays([["A", "B", "C"] * 2,
741-
[1, 2, 3, 4, 5, 6]], names=['Let', 'Num'])
742-
)
738+
ser = pd.Series(['a', 'b', 'c', 'd', 'e', 'f'],
739+
index=pd.MultiIndex.from_arrays([["A", "B", "C"] * 2,
740+
[1, 2, 3, 4, 5, 6]],
741+
names=['Let', 'Num'])
742+
)
743743
ser
744744
745745
# Convert the Series to a DataFrame and merge

0 commit comments

Comments
 (0)