File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 2222 UiPathErrorContract ,
2323 UiPathRuntimeError ,
2424)
25- from uipath .runtime .schema import UiPathRuntimeSchema
2625from uipath .runtime .resumable .trigger import (
2726 UiPathResumeTrigger ,
28- UiPathResumeTriggerType ,
2927 UiPathResumeTriggerName ,
28+ UiPathResumeTriggerType ,
3029)
30+ from uipath .runtime .schema import UiPathRuntimeSchema
3131
3232from .schema_gen import get_type_schema
3333from .type_conversion import (
@@ -204,7 +204,9 @@ async def execute(
204204 func = self ._load_function ()
205205 output = await self ._execute_function (func , input or {})
206206
207- logger .info (f"Output type: { type (output )} , has __interrupt__: { '__interrupt__' in output if isinstance (output , dict ) else False } " )
207+ logger .info (
208+ f"Output type: { type (output )} , has __interrupt__: { '__interrupt__' in output if isinstance (output , dict ) else False } "
209+ )
208210
209211 # Check if output represents a LangGraph interrupt (suspend)
210212 trigger = self ._detect_langgraph_interrupt (output )
You can’t perform that action at this time.
0 commit comments