1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 15:04:50 +08:00

Show comfy_extras warning at the end.

Remove code.
This commit is contained in:
comfyanonymous
2024-07-04 21:43:23 -04:00
parent 720b17442d
commit bd2d3e27d7
2 changed files with 13 additions and 30 deletions

View File

@@ -81,7 +81,7 @@ import yaml
import execution
import server
from server import BinaryEventTypes
from nodes import init_builtin_extra_nodes, init_external_custom_nodes
import nodes
import comfy.model_management
def cuda_malloc_warning():
@@ -219,11 +219,7 @@ if __name__ == "__main__":
for config_path in itertools.chain(*args.extra_model_paths_config):
load_extra_path_config(config_path)
init_builtin_extra_nodes()
if not args.disable_all_custom_nodes:
init_external_custom_nodes()
else:
logging.info("Skipping loading of custom nodes")
nodes.init_extra_nodes(init_custom_nodes=not args.disable_all_custom_nodes)
cuda_malloc_warning()