You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
elseNone, # technically not needed because create_declarative_stream() -> create_simple_retriever() will apply the decorator. But for consistency and depending how we build create_default_stream, this may be needed later
706
+
elseNone, # technically not needed because create_default_stream() -> create_simple_retriever() will apply the decorator. But for consistency and depending how we build create_default_stream, this may be needed later
707
707
)
708
708
else:
709
709
if (
@@ -772,7 +772,7 @@ def _group_streams(
772
772
declarative_stream.retriever.stream_slicer,
773
773
slice_limit=self._limits.max_slices
774
774
ifself._limits
775
-
elseNone, # technically not needed because create_declarative_stream() -> create_simple_retriever() will apply the decorator. But for consistency and depending how we build create_default_stream, this may be needed later
775
+
elseNone, # technically not needed because create_default_stream() -> create_simple_retriever() will apply the decorator. But for consistency and depending how we build create_default_stream, this may be needed later
Falseifhas_parent_stateisNoneelsehas_parent_state, model
3485
3484
)
3486
3485
3487
-
returnself._create_component_from_model(stream_model, config=config, **kwargs) # type: ignore[no-any-return] # Will be created DeclarativeStream as stream_model is stream description
3486
+
returnself._create_component_from_model(stream_model, config=config, **kwargs) # type: ignore[no-any-return] # DeclarativeStream will be created as stream_model is alwyas DeclarativeStreamModel
)# FIXME adding `stream_name` as a parameter means it will be a breaking change. I assume this is mostly called internally so I don't think we need to bother that much about this but still raising the flag
3813
+
)
3815
3814
3816
3815
# This flag will be used exclusively for StateDelegatingStream when a parent stream is created
0 commit comments