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