Skip to content

Commit a03caa4

Browse files
Fix the expansion of platformdirs.site_config_dir (#35)
1 parent 70eac85 commit a03caa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

joft/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def load_toml_app_config() -> typing.Any:
1919
possible_paths = set()
2020

2121
possible_paths.add(platformdirs.user_config_dir())
22-
possible_paths.update(*platformdirs.site_config_dir(multipath=True).split(":"))
22+
possible_paths.update(platformdirs.site_config_dir(multipath=True).split(":"))
2323
possible_paths.add("/etc")
2424
possible_paths.add(str(pathlib.Path.cwd()))
2525

0 commit comments

Comments
 (0)