Update config.py with f string (#101333)

Co-authored-by: Franck Nijhof <git@frenck.dev>
pull/94739/head
SmashedFrenzy16 2023-10-07 12:37:19 +01:00 committed by GitHub
parent e25cf7cbab
commit 3018d4edb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -378,7 +378,9 @@ def _write_default_config(config_dir: str) -> bool:
return True return True
except OSError: 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 return False