Skip to content

Commit

Permalink
fix entities type
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Howley <howley.robert@gmail.com>
  • Loading branch information
robhowley committed Oct 30, 2024
1 parent f88c1aa commit e26a9de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/feature_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class MaterializeIncrementalRequest(BaseModel):


class GetOnlineFeaturesRequest(BaseModel):
entities: List[Dict[str, Any]]
entities: Dict[str, List[Any]]
feature_service: Optional[str] = None
features: List[str] = Field(default_factory=list)
full_feature_names: bool = False
Expand Down

0 comments on commit e26a9de

Please sign in to comment.