Skip to content

Commit

Permalink
Implemented PR change proposal
Browse files Browse the repository at this point in the history
Signed-off-by: Theodor Mihalache <[email protected]>
  • Loading branch information
tmihalac committed Jun 7, 2024
1 parent a2dbfa2 commit 124ab2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/python/feast/offline_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ def do_get(self, context, ticket):

def offline_write_batch(self, command, key):
feature_view_names = command["feature_view_names"]
assert len(feature_view_names) == 1
assert len(feature_view_names) == 1, "feature_view_names list should only have one item"
name_aliases = command["name_aliases"]
assert len(name_aliases) == 1
assert len(name_aliases) == 1, "name_aliases list should only have one item"
project = self.store.config.project
feature_views = self.list_feature_views_by_name(
feature_view_names=feature_view_names,
Expand Down

0 comments on commit 124ab2e

Please sign in to comment.