Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/cocoindex/flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ def __call__(self, *args: Any, **kwargs: Any) -> DataSlice[T]:
def _flow_info(self) -> TransformFlowInfo:
if self._lazy_flow_info is not None:
return self._lazy_flow_info
return cast(TransformFlowInfo, execution_context.run(self._flow_info_async()))
return execution_context.run(self._flow_info_async())

async def _flow_info_async(self) -> TransformFlowInfo:
if self._lazy_flow_info is not None:
Expand Down
Loading