Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 10f08da

Browse files
authoredJan 3, 2025
docs: update bigframes.pandas.DatetimeMethods docstrings (#1246)
1 parent fdcdc18 commit 10f08da

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed
 

‎third_party/bigframes_vendored/pandas/core/arrays/datetimelike.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ def strftime(self, date_format: str):
3333
Date format string (e.g. "%Y-%m-%d").
3434
3535
Returns:
36-
bigframes.series.Series: Series of formatted strings.
36+
bigframes.pandas.Series:
37+
Series of formatted strings.
3738
"""
3839
raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE)
3940

@@ -64,7 +65,8 @@ def normalize(self):
6465
dtype: timestamp[us, tz=UTC][pyarrow]
6566
6667
Returns:
67-
bigframes.series.Series of the same dtype as the data.
68+
bigframes.pandas.Series:
69+
Series of the same dtype as the data.
6870
"""
6971
raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE)
7072

@@ -95,5 +97,9 @@ def floor(self, freq: str):
9597
Args:
9698
freq (str):
9799
Frequency string (e.g. "D", "min", "s").
100+
101+
Returns:
102+
bigframes.pandas.Series:
103+
Series of the same dtype as the data.
98104
"""
99105
raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE)

0 commit comments

Comments
 (0)
Failed to load comments.