From 762b3f4eacd676b13c8d91097a36c4c425cd30e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 22 Feb 2026 06:23:38 +0000 Subject: [PATCH] style: auto-fix ruff warnings [skip ci] --- tensors/comfyui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensors/comfyui.py b/tensors/comfyui.py index f72945c..315e97d 100644 --- a/tensors/comfyui.py +++ b/tensors/comfyui.py @@ -414,7 +414,7 @@ def _wait_for_completion_ws( try: ws = websocket.create_connection(ws_url, timeout=timeout) - except Exception as e: + except Exception: # Fall back to polling if WebSocket fails return _poll_for_completion_fallback(prompt_id, url, timeout, on_progress)