ci: fix f-string escape in botty OCR test

This commit is contained in:
alexpolo1
2026-08-07 08:24:47 +02:00
parent 7431807ee5
commit 523cb54e46

View File

@@ -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')
"