From e23fb1a493a41c50c31587164ca6c19cb7156dbf Mon Sep 17 00:00:00 2001 From: Georg Heiler Date: Wed, 20 Aug 2025 08:48:34 +0200 Subject: [PATCH] chore: fix linter Signed-off-by: Georg Heiler --- docling/models/rapid_ocr_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docling/models/rapid_ocr_model.py b/docling/models/rapid_ocr_model.py index 038330fd..a010cfcb 100644 --- a/docling/models/rapid_ocr_model.py +++ b/docling/models/rapid_ocr_model.py @@ -42,7 +42,7 @@ class RapidOcrModel(BaseOcrModel): if self.enabled: try: - from rapidocr import RapidOCR, EngineType # type: ignore + from rapidocr import EngineType, RapidOCR # type: ignore except ImportError: raise ImportError( "RapidOCR is not installed. Please install it via `pip install rapidocr onnxruntime` to use this OCR engine. "