There was an error while loading. Please reload this page.
1 parent 24f5ae7 commit a2a67a0Copy full SHA for a2a67a0
1 file changed
sdk/python/feast/repo_operations.py
@@ -138,9 +138,8 @@ def parse_repo(repo_root: Path) -> RepoContents:
138
# Don't add if the push source's batch source is a duplicate of an existing batch source
139
if push_source_dep not in data_sources_set:
140
res.data_sources.append(push_source_dep)
141
- elif (
142
- isinstance(obj, StreamFeatureView)
143
- and not any((obj is sfv) for sfv in res.stream_feature_views)
+ elif isinstance(obj, StreamFeatureView) and not any(
+ (obj is sfv) for sfv in res.stream_feature_views
144
):
145
res.stream_feature_views.append(obj)
146
if (
0 commit comments