undo adding scripts to sys.modules

This commit is contained in:
AUTOMATIC1111 2024-04-22 11:49:55 +03:00
parent e6a8d0b4e6
commit a183ea4ba7
1 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@ import os
import importlib.util
from modules import errors
import sys
loaded_scripts = {}
@ -14,8 +13,8 @@ def load_module(path):
module_spec = importlib.util.spec_from_file_location(full_module_name, path)
module = importlib.util.module_from_spec(module_spec)
module_spec.loader.exec_module(module)
loaded_scripts[path] = module
sys.modules[full_module_name] = module
return module