We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cc06ca commit 009ea7eCopy full SHA for 009ea7e
sdk/python/feast/inference.py
@@ -32,7 +32,9 @@ def update_entities_with_inferred_types_from_feature_views(
32
if not (incomplete_entities_keys & set(view.entities)):
33
continue # skip if view doesn't contain any entities that need inference
34
35
- col_names_and_types = list(view.batch_source.get_table_column_names_and_types(config))
+ col_names_and_types = list(
36
+ view.batch_source.get_table_column_names_and_types(config)
37
+ )
38
for entity_name in view.entities:
39
if entity_name in incomplete_entities:
40
entity = incomplete_entities[entity_name]
0 commit comments