Swap inside fstring to double quote (#442)
This commit is contained in:
parent
f5c5e31691
commit
932042b62c
1 changed files with 1 additions and 1 deletions
|
|
@ -503,7 +503,7 @@ def run():
|
||||||
print(f'Error: invalid hex color "{color}"')
|
print(f'Error: invalid hex color "{color}"')
|
||||||
preset = ColorProfile(colors)
|
preset = ColorProfile(colors)
|
||||||
else:
|
else:
|
||||||
print(f'Preset should be a comma-separated list of hex colors, or one of the following: {', '.join(sorted(PRESETS.keys()))}')
|
print(f'Preset should be a comma-separated list of hex colors, or one of the following: {", ".join(sorted(PRESETS.keys()))}')
|
||||||
|
|
||||||
if preset is None:
|
if preset is None:
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue