From 7f72c07e0684d3dca0d227ccd656c79d86634a2f Mon Sep 17 00:00:00 2001 From: bigcat88 Date: Tue, 13 Jan 2026 15:07:09 +0200 Subject: [PATCH] fix grammar --- comfy_api_nodes/nodes_meshy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_api_nodes/nodes_meshy.py b/comfy_api_nodes/nodes_meshy.py index 33f44bbb7..cf44e322e 100644 --- a/comfy_api_nodes/nodes_meshy.py +++ b/comfy_api_nodes/nodes_meshy.py @@ -710,7 +710,7 @@ class MeshyTextureNode(IO.ComfyNode): if text_style_prompt and image_style is not None: raise ValueError("text_style_prompt and image_style cannot be used at the same time") if not text_style_prompt and image_style is None: - raise ValueError("One of the text_style_prompt or image_style is required") + raise ValueError("Either text_style_prompt or image_style is required") image_style_url = None if image_style is not None: image_style_url = (await upload_images_to_comfyapi(cls, image_style, wait_label="Uploading style"))[0]