Skip to content

Commit 6899b1a

Browse files
fix a doc string format
1 parent fef203a commit 6899b1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/frame.py

+2-2
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)