Skip to content

Commit 417231d

Browse files
fix a doc string format
1 parent 6e31a83 commit 417231d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/frame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6062,11 +6062,11 @@ def __rdivmod__(self, other) -> Tuple[DataFrame, DataFrame]:
60626062
Examples
60636063
--------
60646064
>>> df = pd.DataFrame(
6065-
... {
6065+
... {{
60666066
... "col1": ["a", "a", "b", "b", "a"],
60676067
... "col2": [1.0, 2.0, 3.0, np.nan, 5.0],
60686068
... "col3": [1.0, 2.0, 3.0, 4.0, 5.0]
6069-
... },
6069+
... }},
60706070
... columns=["col1", "col2", "col3"],
60716071
... )
60726072
>>> df

0 commit comments

Comments
 (0)