From 4909b6ab002ad5206daff12cb5a845387f7a004f Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Sat, 10 Jun 2023 10:10:54 +0200 Subject: [PATCH] bugfixed --- api/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/__init__.py b/api/__init__.py index c64c5c97..b45a9825 100644 --- a/api/__init__.py +++ b/api/__init__.py @@ -150,7 +150,7 @@ class ModelProcess: module = importlib.util.module_from_spec(module_spec) module_spec.loader.exec_module(module) if hasattr(module, "Install"): - module.Install(self) + module.Install(self.config) # define the full absolute path to the module absolute_path = binding_path.resolve()