Skip to content

Commit dd4b293

Browse files
authored
Deleted spaces from parameters list in example
1 parent 42537b2 commit dd4b293

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
@@ -142,7 +142,7 @@ def infer_freq(index, warn: bool = True) -> Optional[str]:
142142
143143
Examples
144144
--------
145-
>>> idx = pd.date_range(start = '2020/12/01', end = '2020/12/30', periods = 30)
145+
>>> idx = pd.date_range(start='2020/12/01', end='2020/12/30', periods=30)
146146
>>> pd.infer_freq(idx)
147147
'D'
148148
"""

0 commit comments

Comments
 (0)