From 1452dadf91910135dab4d705b1774bae8ef13b7c Mon Sep 17 00:00:00 2001 From: Romazes Date: Mon, 9 Sep 2024 19:42:19 +0300 Subject: [PATCH] feat:comment: why it must not be removed --- lean/components/util/json_modules_handler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lean/components/util/json_modules_handler.py b/lean/components/util/json_modules_handler.py index 35573748..5b59ba47 100644 --- a/lean/components/util/json_modules_handler.py +++ b/lean/components/util/json_modules_handler.py @@ -34,6 +34,7 @@ def build_and_configure_modules(target_modules: List[str], module_list: List[Jso for target_module_name in target_modules: module = non_interactive_config_build_for_name(lean_config, target_module_name, module_list, properties, logger, environment_name) + # Ensures extra modules (not brokerage or data feeds) are installed. module.ensure_module_installed(organization_id, module_version) lean_config["environments"][environment_name].update(module.get_settings())