From d4e937e317dcd894947a5b4bef2fa23aa417a1dc Mon Sep 17 00:00:00 2001 From: Felix Wang Date: Fri, 25 Mar 2022 14:02:57 -0700 Subject: [PATCH] Reorder parameters Signed-off-by: Felix Wang --- sdk/python/feast/feature_view.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.