summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Feldmann <mail@tfeldmann.de>2022-08-18 18:05:46 +0200
committerThomas Feldmann <mail@tfeldmann.de>2022-08-18 18:05:46 +0200
commite66b3f9692ad0c3171149c272b6b3d8fca4461f8 (patch)
tree43e12b1e092d5d77af5fdb8495289b4228039239
parentebf0e6c7c2a4282b6fcf585b8770a072f8fb4830 (diff)
update type hints
-rw-r--r--organize/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/organize/cli.py b/organize/cli.py
index 1c58f47..15fc3d0 100644
--- a/organize/cli.py
+++ b/organize/cli.py
@@ -56,7 +56,7 @@ def ensure_default_config():
confdir.writetext(filename, DEFAULT_CONFIG_TEXT)
-def config_path(fs_url: Optional[str] = None) -> str:
+def config_path(fs_url: Optional[str] = None) -> Tuple[bool, str]:
"""
Return the config path, resolved into a syspath if possible.
If no fs_url is given, the default locations are checked.