From e2c3d7a28c2c854c1e127f089ae5c056d547ed2e Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Sun, 18 Jan 2026 13:36:35 +0100 Subject: [PATCH] Add __init__.py --- __init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 __init__.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..aa2842c --- /dev/null +++ b/__init__.py @@ -0,0 +1,13 @@ +from .sharp_node import SharpFrameSelector + +# Map the class to a name ComfyUI recognizes +NODE_CLASS_MAPPINGS = { + "SharpFrameSelector": SharpFrameSelector +} + +# Map the internal name to a human-readable label in the menu +NODE_DISPLAY_NAME_MAPPINGS = { + "SharpFrameSelector": "Sharp Frame Selector (Video)" +} + +__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"] \ No newline at end of file