Skip to content

Commit d4e937e

Browse files
committed
Reorder parameters
Signed-off-by: Felix Wang <wangfelix98@gmail.com>
1 parent 4cbf97b commit d4e937e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/python/feast/feature_view.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ def __init__(
9191
batch_source: DataSource,
9292
stream_source: Optional[DataSource] = None,
9393
features: Optional[List[Feature]] = None,
94+
tags: Optional[Dict[str, str]] = None,
9495
online: bool = True,
9596
description: str = "",
96-
tags: Optional[Dict[str, str]] = None,
9797
owner: str = "",
9898
):
9999
"""
@@ -109,10 +109,10 @@ def __init__(
109109
stream_source (optional): The stream source of data where this group of features
110110
is stored.
111111
features (optional): The list of features defined as part of this feature view.
112+
tags (optional): A dictionary of key-value pairs to store arbitrary metadata.
112113
online (optional): A boolean indicating whether online retrieval is enabled for
113114
this feature view.
114115
description (optional): A human-readable description.
115-
tags (optional): A dictionary of key-value pairs to store arbitrary metadata.
116116
owner (optional): The owner of the feature view, typically the email of the
117117
primary maintainer.
118118

0 commit comments

Comments
 (0)