From 23cb66a9a64f411f2ce88187a9e74a989c5e7aff Mon Sep 17 00:00:00 2001 From: Lumir Balhar Date: Mon, 14 Oct 2024 12:24:30 +0200 Subject: [PATCH] Fix the expansion of platformdirs.site_config_dir --- joft/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/joft/utils.py b/joft/utils.py index 8f369e6..3e751a4 100644 --- a/joft/utils.py +++ b/joft/utils.py @@ -19,7 +19,7 @@ def load_toml_app_config() -> typing.Any: possible_paths = set() possible_paths.add(platformdirs.user_config_dir()) - possible_paths.update(*platformdirs.site_config_dir(multipath=True).split(":")) + possible_paths.update(platformdirs.site_config_dir(multipath=True).split(":")) possible_paths.add("/etc") possible_paths.add(str(pathlib.Path.cwd()))