From 8afdadc26346123fc0bcb198234086472645e232 Mon Sep 17 00:00:00 2001 From: "Sam G." Date: Tue, 9 Jul 2024 14:52:42 -0700 Subject: [PATCH] fix bug when group dir doesn't exist --- symconf/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symconf/config.py b/symconf/config.py index 742f150..e8c4976 100644 --- a/symconf/config.py +++ b/symconf/config.py @@ -307,7 +307,7 @@ class ConfigManager: group_dir = Path(self.config_dir, 'groups') if not group_dir.exists(): - return {} + return {}, [] # handle non-palette-scheme groups group_matches = {}