Update config.py with f string (#101333)

Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
SmashedFrenzy16
2023-10-07 12:37:19 +01:00
committed by GitHub
parent e25cf7cbab
commit 3018d4edb9

View File

@@ -378,7 +378,9 @@ def _write_default_config(config_dir: str) -> bool:
return True
except OSError:
print("Unable to create default configuration file", config_path) # noqa: T201
print( # noqa: T201
f"Unable to create default configuration file {config_path}"
)
return False