We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b99d06 commit a9ff0e8Copy full SHA for a9ff0e8
main.py
@@ -145,6 +145,7 @@ async def load_module_from_path(module_name, module_path):
145
# Load the module
146
spec = importlib.util.spec_from_file_location(module_name, module_path)
147
module = importlib.util.module_from_spec(spec)
148
+ sys.modules[module_name] = module
149
spec.loader.exec_module(module)
150
print(f"Loaded module: {module.__name__}")
151
if hasattr(module, "Pipeline"):
0 commit comments