From 23b4cac2ce85e6a0c257ee404aa94e1b1555cd2c Mon Sep 17 00:00:00 2001 From: Michal Gubricky Date: Thu, 14 Nov 2024 13:29:38 +0100 Subject: [PATCH] Update Tests/kaas/plugin/plugin_cluster_stacks.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Matthias Büchse Signed-off-by: Michal Gubricky --- Tests/kaas/plugin/plugin_cluster_stacks.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Tests/kaas/plugin/plugin_cluster_stacks.py b/Tests/kaas/plugin/plugin_cluster_stacks.py index ba9c81bac..ab0017509 100644 --- a/Tests/kaas/plugin/plugin_cluster_stacks.py +++ b/Tests/kaas/plugin/plugin_cluster_stacks.py @@ -93,8 +93,6 @@ def load_config(config_path): """ Loads the configuration from a YAML file. """ - if not os.path.exists(config_path): - raise FileNotFoundError(f"Configuration file {config_path} not found.") with open(config_path, 'r') as file: config = yaml.safe_load(file) or {}