Skip to content

Commit

Permalink
fix! join_keys typing.
Browse files Browse the repository at this point in the history
Signed-off-by: williamfoschiera <[email protected]>
  • Loading branch information
williamfoschiera committed Jun 5, 2023
1 parent 546019a commit 8a7bb22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/python/feast/inference.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import re
from typing import List, Set, Union
from typing import List, Optional, Set, Union

from feast.data_source import DataSource, PushSource, RequestSource
from feast.entity import Entity
Expand Down Expand Up @@ -187,7 +187,7 @@ def update_feature_views_with_inferred_features_and_entities(

def _infer_features_and_entities(
fv: FeatureView,
join_keys: Set[str],
join_keys: Set[Optional[str]],
run_inference_for_features,
config,
) -> None:
Expand Down

0 comments on commit 8a7bb22

Please sign in to comment.