Skip to content

Commit 009ea7e

Browse files
committed
Format
Signed-off-by: Felix Wang <wangfelix98@gmail.com>
1 parent 0cc06ca commit 009ea7e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sdk/python/feast/inference.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ def update_entities_with_inferred_types_from_feature_views(
3232
if not (incomplete_entities_keys & set(view.entities)):
3333
continue # skip if view doesn't contain any entities that need inference
3434

35-
col_names_and_types = list(view.batch_source.get_table_column_names_and_types(config))
35+
col_names_and_types = list(
36+
view.batch_source.get_table_column_names_and_types(config)
37+
)
3638
for entity_name in view.entities:
3739
if entity_name in incomplete_entities:
3840
entity = incomplete_entities[entity_name]

0 commit comments

Comments
 (0)