Skip to content

Commit 76516b4

Browse files
committed
CLN: Fix line too loong in doc io.rst
1 parent b8517ac commit 76516b4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/source/user_guide/io.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3948,7 +3948,8 @@ Using ``level_0`` and ``level_1`` for MultiIndex without name.
39483948
levels=[["foo", "bar", "baz", "qux"], ["one", "two", "three"]],
39493949
codes=[[0, 0, 0, 1, 1, 2, 2, 3, 3, 3], [0, 1, 2, 0, 1, 1, 2, 0, 1, 2]],
39503950
)
3951-
df_mi_2 = pd.DataFrame(np.random.randn(10, 3), index=index, columns=["A", "B", "C"])
3951+
df_mi_2 = pd.DataFrame(np.random.randn(10, 3),
3952+
index=index, columns=["A", "B", "C"])
39523953
df_mi_2
39533954
39543955
store.append("df_mi_2", df_mi_2)

0 commit comments

Comments
 (0)