Skip to content

Commit 70e43a3

Browse files
mjnoviceclaude
andcommitted
style: fix ruff formatting in escalation_tool.py
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c3ad56a commit 70e43a3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/uipath_langchain/agent/tools/escalation_tool.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,9 @@ async def _check_escalation_memory_cache(
477477
threshold = memory_settings.get("threshold", 0.0)
478478
mode_str = memory_settings.get("searchMode", "Hybrid")
479479
search_mode = (
480-
SearchMode(mode_str) if mode_str in SearchMode.__members__ else SearchMode.Hybrid
480+
SearchMode(mode_str)
481+
if mode_str in SearchMode.__members__
482+
else SearchMode.Hybrid
481483
)
482484
for fs in memory_settings.get("fieldSettings", []):
483485
if isinstance(fs, dict) and "name" in fs:

0 commit comments

Comments
 (0)