Skip to content

Commit d0348b7

Browse files
authored
Merge pull request #5 from pandas-dev/master
DOC: Fix SS03 docstring error (pandas-dev#30939)
2 parents fd6f627 + 044559a commit d0348b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/core/arrays/datetimelike.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ def freq(self, value):
920920
@property
921921
def freqstr(self):
922922
"""
923-
Return the frequency object as a string if its set, otherwise None
923+
Return the frequency object as a string if its set, otherwise None.
924924
"""
925925
if self.freq is None:
926926
return None

pandas/core/window/indexers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333

3434
class BaseIndexer:
35-
"""Base class for window bounds calculations"""
35+
"""Base class for window bounds calculations."""
3636

3737
def __init__(
3838
self, index_array: Optional[np.ndarray] = None, window_size: int = 0, **kwargs,

0 commit comments

Comments
 (0)