From 99a25a3dc4f313e9422fc431540aa83a46a6a15b Mon Sep 17 00:00:00 2001 From: nolan4 Date: Mon, 27 Oct 2025 09:54:41 -0700 Subject: [PATCH] Fix whitespace lint error --- comfy_extras/nodes_qwen.py | 1 - 1 file changed, 1 deletion(-) diff --git a/comfy_extras/nodes_qwen.py b/comfy_extras/nodes_qwen.py index f59c84d54..03ca00f73 100644 --- a/comfy_extras/nodes_qwen.py +++ b/comfy_extras/nodes_qwen.py @@ -215,7 +215,6 @@ class TextEncodeQwenImageEliGen(io.ComfyNode): for entity_prompt, _ in valid_entities: # mask not used at this point entity_tokens = clip.tokenize(entity_prompt) entity_cond_dict = clip.encode_from_tokens(entity_tokens, return_pooled=True, return_dict=True) - entity_prompt_emb = entity_cond_dict["cond"] entity_prompt_emb_mask = entity_cond_dict.get("attention_mask", None)