From b2261a3c49c054738cb4251244f4bdde772352a8 Mon Sep 17 00:00:00 2001 From: mike Date: Sun, 9 Jun 2024 09:50:12 -0700 Subject: [PATCH] guidance --- domain/config/ConfigFile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/domain/config/ConfigFile.py b/domain/config/ConfigFile.py index b1e023d..9618c39 100644 --- a/domain/config/ConfigFile.py +++ b/domain/config/ConfigFile.py @@ -196,7 +196,8 @@ class ConfigFile: f"Option date-detection not found; Will use default: {self.__date_detection}" ) else: - self.warning(f"No options key found!") + self.error(f"No options key found!") + raise AssertionError(f"No options key found!") assert "paths" in self.__data, ( f"Could not find 'paths' key"