Skip to content

Commit 947b96f

Browse files
committed
Merge branch 'main' into update-watch
2 parents 6e7de6f + 6318bf5 commit 947b96f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cocoindex/flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@ def __call__(self, *args: Any, **kwargs: Any) -> DataSlice[T]:
983983
def _flow_info(self) -> TransformFlowInfo:
984984
if self._lazy_flow_info is not None:
985985
return self._lazy_flow_info
986-
return cast(TransformFlowInfo, execution_context.run(self._flow_info_async()))
986+
return execution_context.run(self._flow_info_async())
987987

988988
async def _flow_info_async(self) -> TransformFlowInfo:
989989
if self._lazy_flow_info is not None:

0 commit comments

Comments
 (0)