Skip to content

Commit 5e6d417

Browse files
committed
Deleted spaces from parameters list in example
1 parent 8725a48 commit 5e6d417

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tseries/frequencies.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def infer_freq(index, warn: bool = True) -> Optional[str]:
148148
149149
Examples
150150
--------
151-
>>> idx = pd.date_range(start = '2020/12/01', end = '2020/12/30', periods = 30)
151+
>>> idx = pd.date_range(start='2020/12/01', end='2020/12/30', periods=30)
152152
>>> pd.infer_freq(idx)
153153
'D'
154154
"""

0 commit comments

Comments
 (0)