Skip to content

Commit d1ce54f

Browse files
committed
Fix format
1 parent 6b1b31f commit d1ce54f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ai_diffusion/comfy_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -749,9 +749,9 @@ def find_model(model_list: Sequence[str], id: ResourceId):
749749

750750
def _find_text_encoder_models(model_list: Sequence[str]):
751751
kind = ResourceKind.text_encoder
752+
tes = ["clip_l", "clip_g", "t5", "qwen", "qwen_3_06b", "qwen_3_4b", "qwen_3_8b", "ministral"]
752753
return {
753-
resource_id(kind, Arch.all, te): _find_model(model_list, kind, Arch.all, te)
754-
for te in ["clip_l", "clip_g", "t5", "qwen", "qwen_3_06b", "qwen_3_4b", "qwen_3_8b", "ministral"]
754+
resource_id(kind, Arch.all, te): _find_model(model_list, kind, Arch.all, te) for te in tes
755755
}
756756

757757

0 commit comments

Comments
 (0)