We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1075f2d commit 3ab9261Copy full SHA for 3ab9261
1 file changed
src/uipath/_cli/_evals/_progress_reporter.py
@@ -740,9 +740,7 @@ async def handle_agent_execution_completed(
740
)
741
return
742
743
- is_coded = self.is_coded_eval.get(
744
- self.eval_set_execution_id or "", False
745
- )
+ is_coded = self.is_coded_eval.get(self.eval_set_execution_id or "", False)
746
747
endpoint_suffix = "coded/" if is_coded else ""
748
spec = RequestSpec(
@@ -771,9 +769,7 @@ async def handle_agent_execution_completed(
771
769
772
770
773
except Exception as e:
774
- self._format_error_message(
775
- e, "StudioWeb agent execution completed error"
776
+ self._format_error_message(e, "StudioWeb agent execution completed error")
777
778
async def handle_update_eval_run(self, payload: EvalRunUpdatedEvent) -> None:
779
try:
0 commit comments