Skip to content

Commit 8a7bb22

Browse files
author
williamfoschiera
committed
fix! join_keys typing.
Signed-off-by: williamfoschiera <william.foschiera@buser.com.br>
1 parent 546019a commit 8a7bb22

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sdk/python/feast/inference.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import re
2-
from typing import List, Set, Union
2+
from typing import List, Optional, Set, Union
33

44
from feast.data_source import DataSource, PushSource, RequestSource
55
from feast.entity import Entity
@@ -187,7 +187,7 @@ def update_feature_views_with_inferred_features_and_entities(
187187

188188
def _infer_features_and_entities(
189189
fv: FeatureView,
190-
join_keys: Set[str],
190+
join_keys: Set[Optional[str]],
191191
run_inference_for_features,
192192
config,
193193
) -> None:

0 commit comments

Comments
 (0)