From 449143a20938a5bcb1770a222aaa93f89066bc5c Mon Sep 17 00:00:00 2001 From: Martin Prokoph Date: Sun, 20 Jul 2025 16:44:58 +0200 Subject: [PATCH] fix: correctly format strings --- src/generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generator.py b/src/generator.py index 860ef8c..b6bf11f 100644 --- a/src/generator.py +++ b/src/generator.py @@ -69,7 +69,7 @@ def processLeaf(root, files, infile, jsonData, args) -> int: # We don't want to generate assets for compile-only or overlay textures if leaf.getTextureId() in compileonly_textures or leaf.getTextureId() in overlay_textures.values(): - printOverride(f"Skipping {"compile-only" if leaf.getTextureId() in compileonly_textures else "overlay"} texture") + printOverride(f"Skipping {'compile-only' if leaf.getTextureId() in compileonly_textures else 'overlay'} texture") return 0 leaf.use_legacy_model = shouldUseLegacyModel(leaf, root, infile, args)