From ad986dd534656893be10c13a104d26fcd1e1a20b Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 30 Jul 2017 12:44:03 +1000 Subject: [PATCH] general: Remove pointless f-string --- pywal/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pywal/export.py b/pywal/export.py index a483022..748e3a9 100644 --- a/pywal/export.py +++ b/pywal/export.py @@ -48,7 +48,7 @@ def every(colors, output_dir=CACHE_DIR): for file in os.scandir(MODULE_DIR / "templates"): template(all_colors, file.path, output_dir / file.name) - print(f"export: Exported all files.") + print("export: Exported all files.") def color(colors, export_type, output_file=None):