Skip to content

Commit

Permalink
Fix missing name variable instantiation
Browse files Browse the repository at this point in the history
Signed-off-by: Terence <terencelimxp@gmail.com>
  • Loading branch information
terryyylim committed Nov 16, 2020
1 parent 19427ce commit bac20e0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sdk/python/feast/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -768,6 +768,8 @@ def ingest(

if project is None:
project = self.project
if isinstance(feature_table, str):
name = feature_table
if isinstance(feature_table, FeatureTable):
name = feature_table.name

Expand Down

0 comments on commit bac20e0

Please sign in to comment.