From 9f111ad2c20bb436ff1bb27df32084603126d776 Mon Sep 17 00:00:00 2001 From: Arxip222 Date: Wed, 24 Dec 2025 10:57:27 +0300 Subject: [PATCH] test drone --- backend/src/application/services/document_parser_service.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/src/application/services/document_parser_service.py b/backend/src/application/services/document_parser_service.py index c151794..66c70ea 100644 --- a/backend/src/application/services/document_parser_service.py +++ b/backend/src/application/services/document_parser_service.py @@ -67,6 +67,8 @@ class DocumentParserService: return title, content except YandexOCRError: raise + except Exception as e: raise YandexOCRError(f"Ошибка при парсинге изображения: {str(e)}") from e +