From 300cdc7a4c78bf128fc031856c44255562ebaecd Mon Sep 17 00:00:00 2001 From: chrisr3d Date: Thu, 15 Apr 2021 16:41:15 +0200 Subject: [PATCH] fix: [ocr_enrich] Making Pep8 happy --- misp_modules/modules/expansion/ocr_enrich.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misp_modules/modules/expansion/ocr_enrich.py b/misp_modules/modules/expansion/ocr_enrich.py index 4c24cb8..ff0a70c 100644 --- a/misp_modules/modules/expansion/ocr_enrich.py +++ b/misp_modules/modules/expansion/ocr_enrich.py @@ -40,7 +40,7 @@ def handler(q=False): try: decoded = pytesseract.image_to_string(cv2.cvtColor(image, cv2.COLOR_BGR2RGB)) return { - 'results':[ + 'results': [ { 'types': ['freetext'], 'values': list(filter_decoded(decoded)),