Skip to content

Commit ca7d616

Browse files
chore: Reorder feature view parameters (#2455)
Signed-off-by: Felix Wang <wangfelix98@gmail.com>
1 parent f7bd5d5 commit ca7d616

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
@@ -93,9 +93,9 @@ def __init__(
9393
batch_source: Optional[DataSource] = None,
9494
stream_source: Optional[DataSource] = None,
9595
features: Optional[List[Feature]] = None,
96+
tags: Optional[Dict[str, str]] = None,
9697
online: bool = True,
9798
description: str = "",
98-
tags: Optional[Dict[str, str]] = None,
9999
owner: str = "",
100100
):
101101
"""
@@ -111,10 +111,10 @@ def __init__(
111111
stream_source (optional): The stream source of data where this group of features
112112
is stored.
113113
features (optional): The list of features defined as part of this feature view.
114+
tags (optional): A dictionary of key-value pairs to store arbitrary metadata.
114115
online (optional): A boolean indicating whether online retrieval is enabled for
115116
this feature view.
116117
description (optional): A human-readable description.
117-
tags (optional): A dictionary of key-value pairs to store arbitrary metadata.
118118
owner (optional): The owner of the feature view, typically the email of the
119119
primary maintainer.
120120

0 commit comments

Comments
 (0)