From aae6f2d63a51242ceaf7c69b25b3c60cdf8362ab Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Mon, 5 May 2025 01:22:49 -0700 Subject: [PATCH] Show errors and API output URLs to the user (change log levels) (#131) --- comfy_api_nodes/apis/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/comfy_api_nodes/apis/client.py b/comfy_api_nodes/apis/client.py index cc135ad0a..92aab9435 100644 --- a/comfy_api_nodes/apis/client.py +++ b/comfy_api_nodes/apis/client.py @@ -108,7 +108,8 @@ from comfy.cli_args import args from comfy import utils from . import request_logger -# Import models from your generated stubs +from comfy.cli_args import args +from comfy import utils T = TypeVar("T", bound=BaseModel) R = TypeVar("R", bound=BaseModel)