From 5652b260d5b0eddaac0a0d13133f3df206d1c5d6 Mon Sep 17 00:00:00 2001 From: Brian Wylie Date: Mon, 9 Dec 2024 12:33:38 -0700 Subject: [PATCH] adding a log message about using default themes path --- src/sageworks/utils/theme_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sageworks/utils/theme_manager.py b/src/sageworks/utils/theme_manager.py index 0a9728d2b..5b3ea27d1 100644 --- a/src/sageworks/utils/theme_manager.py +++ b/src/sageworks/utils/theme_manager.py @@ -37,6 +37,7 @@ def _initialize(cls): # If the theme path is not set, use the default path if not config_theme_path: + cls._log.important("Using default themes path...") cls._theme_path = files("sageworks") / "themes" else: cls._theme_path = Path(config_theme_path)