Update scripts.py

This commit is contained in:
lllyasviel
2024-01-29 20:43:37 -08:00
parent 356cac3a2a
commit 36b377c337

View File

@@ -514,6 +514,8 @@ def load_scripts():
syspath = sys.path
print(f'Current System Paths = {syspath}')
def register_scripts_from_module(module):
for script_class in module.__dict__.values():
if not inspect.isclass(script_class):