Skip to content

Commit dabf9f8

Browse files
lint fixes
1 parent 8ff5e6d commit dabf9f8

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/uipath/_cli/_chat/_bridge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ async def connect(self, timeout: float = 10.0) -> None:
9595
self._connected_event.clear()
9696

9797
if self._debug_mode:
98-
logger.warning(f"SocketIOChatBridge is in debug mode. Not connecting websocket.")
98+
logger.warning("SocketIOChatBridge is in debug mode. Not connecting websocket.")
9999
else:
100100
try:
101101
# Attempt to connect with timeout

src/uipath/agent/models/agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -717,6 +717,7 @@ class AgentDefinition(BaseModel):
717717

718718
@property
719719
def is_conversational(self) -> bool:
720+
"""Checks the settings.engine property to determine if the agent is conversational."""
720721
return self.settings.engine == "conversational-v1"
721722

722723
@staticmethod

src/uipath/platform/resume_triggers/_protocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
UiPathFaultedTriggerError,
1111
UiPathPendingTriggerError,
1212
)
13-
from uipath.platform.common.interrupt_models import UserMessageWait
1413
from uipath.runtime import (
1514
UiPathApiTrigger,
1615
UiPathResumeTrigger,
@@ -36,6 +35,7 @@
3635
WaitJob,
3736
WaitTask,
3837
)
38+
from uipath.platform.common.interrupt_models import UserMessageWait
3939
from uipath.platform.context_grounding import DeepRagStatus
4040
from uipath.platform.errors import (
4141
BatchTransformNotCompleteException,

0 commit comments

Comments
 (0)