diff options
| author | David Lord <davidism@gmail.com> | 2020-04-19 23:54:14 -0700 |
|---|---|---|
| committer | David Lord <davidism@gmail.com> | 2020-04-19 23:58:30 -0700 |
| commit | 03dabdda8e48f0f87f13d24b9a2e65c1b0807635 (patch) | |
| tree | 7f195251ffdb1399d0b289d4c0146e5c5e6027a2 /src/click/utils.py | |
| parent | d8bd5b1e6ececb9f8ee7cc05a94216b86ce80aed (diff) | |
| download | click-03dabdda8e48f0f87f13d24b9a2e65c1b0807635.tar.gz | |
f-strings everywhere
Diffstat (limited to 'src/click/utils.py')
| -rw-r--r-- | src/click/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/click/utils.py b/src/click/utils.py index b18c83d..ffd26b3 100644 --- a/src/click/utils.py +++ b/src/click/utils.py @@ -408,7 +408,7 @@ def get_app_dir(app_name, roaming=True, force_posix=False): folder = os.path.expanduser("~") return os.path.join(folder, app_name) if force_posix: - return os.path.join(os.path.expanduser("~/.{}".format(_posixify(app_name)))) + return os.path.join(os.path.expanduser(f"~/.{_posixify(app_name)}")) if sys.platform == "darwin": return os.path.join( os.path.expanduser("~/Library/Application Support"), app_name |
