From 27005fddc25a322a8c5387cc8a7f10d041a87d11 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Tue, 21 Oct 2025 19:50:08 -0700 Subject: [PATCH] Remove leftover function from early prototyping --- comfy_api/latest/__init__.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/comfy_api/latest/__init__.py b/comfy_api/latest/__init__.py index 0e007045a..bb47db117 100644 --- a/comfy_api/latest/__init__.py +++ b/comfy_api/latest/__init__.py @@ -83,11 +83,6 @@ class ComfyExtension(ABC): This should be used to initialize any global resources neeeded by the extension. """ - async def get_subgraphs_dir(self) -> str | None: - """ - Returns the directory containing the published subgraphs for this extension. - """ - return None @abstractmethod async def get_node_list(self) -> list[type[io.ComfyNode]]: