From ca28eb3523be4b28d4468b1adc85db490703b4f6 Mon Sep 17 00:00:00 2001 From: apaz-cli Date: Thu, 9 Oct 2025 17:08:58 -0500 Subject: [PATCH] Swap inside fstring to double quote --- hyfetch/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyfetch/main.py b/hyfetch/main.py index c72d1167..0df0a1a0 100755 --- a/hyfetch/main.py +++ b/hyfetch/main.py @@ -503,7 +503,7 @@ def run(): print(f'Error: invalid hex color "{color}"') preset = ColorProfile(colors) 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: exit(1)