From 523cb54e46e3880bbd30cfc5aab1bf6b466f6031 Mon Sep 17 00:00:00 2001 From: alexpolo1 Date: Fri, 7 Aug 2026 08:24:47 +0200 Subject: [PATCH] ci: fix f-string escape in botty OCR test --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f39c4b2..4bb9930 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -177,7 +177,8 @@ jobs: invert=True, threshold=25, ) - print(f' OCR result: {results[0].text if results else \"empty\"}') + result_text = results[0].text if results else 'empty' + print(f' OCR result: {result_text}') print('OCR botty module: OK') "