Skip to content

Commit ee59a0d

Browse files
removes trailing whitespace
1 parent 8e02543 commit ee59a0d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/sagemaker/feature_store/dataset_builder.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -178,24 +178,24 @@ class DatasetBuilder:
178178
_point_in_time_accurate_join (bool): A boolean representing if point-in-time join
179179
is applied to the resulting dataframe when calling "to_dataframe".
180180
When set to True, users can retrieve data using “row-level time travel”
181-
according to the event times provided to the DatasetBuilder. This requires that the
181+
according to the event times provided to the DatasetBuilder. This requires that the
182182
entity dataframe with event times is submitted as the base in the constructor
183183
(default: False).
184184
_include_duplicated_records (bool): A boolean representing whether the resulting dataframe
185185
when calling "to_dataframe" should include duplicated records (default: False).
186-
_include_deleted_records (bool): A boolean representing whether the resulting
186+
_include_deleted_records (bool): A boolean representing whether the resulting
187187
dataframe when calling "to_dataframe" should include deleted records (default: False).
188188
_number_of_recent_records (int): An integer representing how many records will be
189189
returned for each record identifier (default: 1).
190190
_number_of_records (int): An integer representing the number of records that should be
191191
returned in the resulting dataframe when calling "to_dataframe" (default: None).
192-
_write_time_ending_timestamp (datetime.datetime): A datetime that represents the latest
192+
_write_time_ending_timestamp (datetime.datetime): A datetime that represents the latest
193193
write time for a record to be included in the resulting dataset. Records with a
194194
newer write time will be omitted from the resulting dataset. (default: None).
195-
_event_time_starting_timestamp (datetime.datetime): A datetime that represents the earliest
195+
_event_time_starting_timestamp (datetime.datetime): A datetime that represents the earliest
196196
event time for a record to be included in the resulting dataset. Records
197197
with an older event time will be omitted from the resulting dataset. (default: None).
198-
_event_time_ending_timestamp (datetime.datetime): A datetime that represents the latest
198+
_event_time_ending_timestamp (datetime.datetime): A datetime that represents the latest
199199
event time for a record to be included in the resulting dataset. Records
200200
with a newer event time will be omitted from the resulting dataset. (default: None).
201201
_feature_groups_to_be_merged (List[FeatureGroupToBeMerged]): A list of

0 commit comments

Comments
 (0)