diff --git a/sdk/python/feast/feature_view.py b/sdk/python/feast/feature_view.py index bf5315d43bf..d55a40052cb 100644 --- a/sdk/python/feast/feature_view.py +++ b/sdk/python/feast/feature_view.py @@ -91,9 +91,9 @@ def __init__( batch_source: DataSource, stream_source: Optional[DataSource] = None, features: Optional[List[Feature]] = None, + tags: Optional[Dict[str, str]] = None, online: bool = True, description: str = "", - tags: Optional[Dict[str, str]] = None, owner: str = "", ): """ @@ -109,10 +109,10 @@ def __init__( stream_source (optional): The stream source of data where this group of features is stored. features (optional): The list of features defined as part of this feature view. + tags (optional): A dictionary of key-value pairs to store arbitrary metadata. online (optional): A boolean indicating whether online retrieval is enabled for this feature view. description (optional): A human-readable description. - tags (optional): A dictionary of key-value pairs to store arbitrary metadata. owner (optional): The owner of the feature view, typically the email of the primary maintainer.