From 7fe0f8c979d308717238f9984984a4886d5e817c Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Sun, 9 Jul 2023 15:38:43 +0200 Subject: [PATCH] Fix useless use of f-string --- scripts/extract_blocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/extract_blocks.py b/scripts/extract_blocks.py index e26d1f2f..16b48a85 100755 --- a/scripts/extract_blocks.py +++ b/scripts/extract_blocks.py @@ -50,7 +50,7 @@ with open(image, "rb") as image: "<6sBB32s8sLHHQ", header ) if ident != b"DWARFS": - print(f"error: expected dwarfs header") + print("error: expected dwarfs header") raise SystemExit(1) if sectype not in sectypes: print(f"error: unexpected section type ({sectype})")