Skip to content

Commit a35d2a5

Browse files
author
Chibi Vikram
committed
style: fix linting issues in functions runtime
1 parent 3722a69 commit a35d2a5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/uipath/functions/runtime.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
UiPathErrorContract,
2323
UiPathRuntimeError,
2424
)
25-
from uipath.runtime.schema import UiPathRuntimeSchema
2625
from uipath.runtime.resumable.trigger import (
2726
UiPathResumeTrigger,
28-
UiPathResumeTriggerType,
2927
UiPathResumeTriggerName,
28+
UiPathResumeTriggerType,
3029
)
30+
from uipath.runtime.schema import UiPathRuntimeSchema
3131

3232
from .schema_gen import get_type_schema
3333
from .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)

0 commit comments

Comments
 (0)