From da99303b7aeacbdc65a9e589c6c498cee3185724 Mon Sep 17 00:00:00 2001 From: aaladro Date: Mon, 2 Dec 2024 15:20:25 +0100 Subject: [PATCH] [IMP] code-workspace definition: python.analysis.extraPaths --- tasks_downstream.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks_downstream.py b/tasks_downstream.py index 352ea114..9befb697 100644 --- a/tasks_downstream.py +++ b/tasks_downstream.py @@ -145,6 +145,7 @@ def write_code_workspace_file(c, cw_path=None): cw_config["settings"].update( { "python.autoComplete.extraPaths": [f"{str(SRC_PATH)}/odoo"], + "python.analysis.extraPaths": [f"{str(SRC_PATH)}/odoo"], "python.formatting.provider": "none", "python.linting.flake8Enabled": True, "python.linting.ignorePatterns": [f"{str(SRC_PATH)}/odoo/**/*.py"],