File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
third_party/bigframes_vendored/pandas/core/arrays Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments