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):
33
33
Date format string (e.g. "%Y-%m-%d").
34
34
35
35
Returns:
36
- bigframes.series.Series: Series of formatted strings.
36
+ bigframes.pandas.Series:
37
+ Series of formatted strings.
37
38
"""
38
39
raise NotImplementedError (constants .ABSTRACT_METHOD_ERROR_MESSAGE )
39
40
@@ -64,7 +65,8 @@ def normalize(self):
64
65
dtype: timestamp[us, tz=UTC][pyarrow]
65
66
66
67
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.
68
70
"""
69
71
raise NotImplementedError (constants .ABSTRACT_METHOD_ERROR_MESSAGE )
70
72
@@ -95,5 +97,9 @@ def floor(self, freq: str):
95
97
Args:
96
98
freq (str):
97
99
Frequency string (e.g. "D", "min", "s").
100
+
101
+ Returns:
102
+ bigframes.pandas.Series:
103
+ Series of the same dtype as the data.
98
104
"""
99
105
raise NotImplementedError (constants .ABSTRACT_METHOD_ERROR_MESSAGE )
0 commit comments