From 56aae3e2c819a85522947856ca047e5d5b445b87 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Thu, 24 Jul 2025 16:24:59 -0700 Subject: [PATCH] Remove v3_01, didnt meant to commit that --- comfy_api/v3_01/__init__.py | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 comfy_api/v3_01/__init__.py diff --git a/comfy_api/v3_01/__init__.py b/comfy_api/v3_01/__init__.py deleted file mode 100644 index 928f629a7..000000000 --- a/comfy_api/v3_01/__init__.py +++ /dev/null @@ -1,21 +0,0 @@ -from comfy_api.v3._io import _IO -from comfy_api.v3._ui import _UI -from comfy_api.v3._resources import _RESOURCES -import logging - -class Int(_IO.Int): - class Input(_IO.Int.Input): - def as_dict(self): - logging.info("I am in V3_01 def of Int 😎") - return super().as_dict() - - -class IO_01(_IO): - Int = Int - - -io = IO_01 -ui = _UI -resources = _RESOURCES - -__all__ = ["io", "ui", "resources"]