Skip to content

Commit 2191d91

Browse files
FHaasePingviinituutti
authored andcommitted
Fix PEP-8 issues in internals.rst (pandas-dev#23903)
Signed-off-by: Fabian Haase <[email protected]>
1 parent 26c263f commit 2191d91

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

doc/source/internals.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66
:suppress:
77
88
import numpy as np
9+
import pandas as pd
10+
911
np.random.seed(123456)
1012
np.set_printoptions(precision=4, suppress=True)
11-
import pandas as pd
1213
pd.options.display.max_rows = 15
1314
1415
*********
@@ -77,7 +78,8 @@ integer **labels**, and the level **names**:
7778

7879
.. ipython:: python
7980
80-
index = pd.MultiIndex.from_product([range(3), ['one', 'two']], names=['first', 'second'])
81+
index = pd.MultiIndex.from_product([range(3), ['one', 'two']],
82+
names=['first', 'second'])
8183
index
8284
index.levels
8385
index.labels

0 commit comments

Comments
 (0)