Skip to content

Commit d6bb773

Browse files
aniketpaluntkathole
authored andcommitted
Minor linting & reformatting changes
Signed-off-by: Aniket Paluskar <apaluska@redhat.com>
1 parent b8a8ab6 commit d6bb773

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sdk/python/feast/infra/offline_stores/remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def get_historical_features(
219219
"full_feature_names": full_feature_names,
220220
"name_aliases": name_aliases,
221221
}
222-
222+
223223
# Extract and serialize start_date/end_date for remote transmission
224224
start_date = kwargs.get("start_date", None)
225225
end_date = kwargs.get("end_date", None)

sdk/python/feast/offline_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ def get_historical_features(self, command: dict, key: Optional[str] = None):
449449
resource=feature_view, actions=[AuthzedAction.READ_OFFLINE]
450450
)
451451

452-
# Extract and deserialize start_date/end_date if present
452+
# Extract and deserialize start_date/end_date if present
453453
kwargs = {}
454454
if "start_date" in command and command["start_date"] is not None:
455455
kwargs["start_date"] = utils.make_tzaware(
@@ -459,7 +459,7 @@ def get_historical_features(self, command: dict, key: Optional[str] = None):
459459
kwargs["end_date"] = utils.make_tzaware(
460460
datetime.fromisoformat(command["end_date"])
461461
)
462-
462+
463463
retJob = self.offline_store.get_historical_features(
464464
config=self.store.config,
465465
feature_views=feature_views,

0 commit comments

Comments
 (0)