Skip to content

Commit 3aa83fe

Browse files
[refactor] remove version prefixes from Ideogram node categories (comfyanonymous#8418)
Simplifies node organization by consolidating all Ideogram nodes under a single category instead of version-specific subcategories.
1 parent 871749c commit 3aa83fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

comfy_api_nodes/nodes_ideogram.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ def INPUT_TYPES(cls) -> InputTypeDict:
324324

325325
RETURN_TYPES = (IO.IMAGE,)
326326
FUNCTION = "api_call"
327-
CATEGORY = "api node/image/Ideogram/v1"
327+
CATEGORY = "api node/image/Ideogram"
328328
DESCRIPTION = cleandoc(__doc__ or "")
329329
API_NODE = True
330330

@@ -483,7 +483,7 @@ def INPUT_TYPES(cls) -> InputTypeDict:
483483

484484
RETURN_TYPES = (IO.IMAGE,)
485485
FUNCTION = "api_call"
486-
CATEGORY = "api node/image/Ideogram/v2"
486+
CATEGORY = "api node/image/Ideogram"
487487
DESCRIPTION = cleandoc(__doc__ or "")
488488
API_NODE = True
489489

@@ -649,7 +649,7 @@ def INPUT_TYPES(cls) -> InputTypeDict:
649649

650650
RETURN_TYPES = (IO.IMAGE,)
651651
FUNCTION = "api_call"
652-
CATEGORY = "api node/image/Ideogram/v3"
652+
CATEGORY = "api node/image/Ideogram"
653653
DESCRIPTION = cleandoc(__doc__ or "")
654654
API_NODE = True
655655

0 commit comments

Comments
 (0)