From 8a78da1a28f36546913f6075e3bba6d393b82299 Mon Sep 17 00:00:00 2001 From: "Sam G." Date: Tue, 9 Jul 2024 15:36:58 -0700 Subject: [PATCH] fix minor script match bug --- symconf/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/symconf/config.py b/symconf/config.py index 242c0a4..1fb4e3a 100644 --- a/symconf/config.py +++ b/symconf/config.py @@ -490,7 +490,7 @@ class ConfigManager: app_name, scheme='any', palette='any', - ): + ) -> list: ''' Execute matching scripts in the app's ``call/`` directory. @@ -513,7 +513,7 @@ class ConfigManager: call_dir = Path(app_dir, 'call') if not call_dir.is_dir(): - return + return [] prefix_order = [ ('none' , 'none'),