From 143a3b24753dc293b46be16c9cd394c84290af41 Mon Sep 17 00:00:00 2001 From: Adam Fourney Date: Thu, 27 Feb 2025 23:15:11 -0800 Subject: [PATCH] Fixed formatting. --- .../markitdown/src/markitdown/converters/_image_converter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/markitdown/src/markitdown/converters/_image_converter.py b/packages/markitdown/src/markitdown/converters/_image_converter.py index 55d30c7..3c848dd 100644 --- a/packages/markitdown/src/markitdown/converters/_image_converter.py +++ b/packages/markitdown/src/markitdown/converters/_image_converter.py @@ -4,6 +4,7 @@ from ._media_converter import MediaConverter import base64 import mimetypes + class ImageConverter(MediaConverter): """ Converts images to markdown via extraction of metadata (if `exiftool` is installed), OCR (if `easyocr` is installed), and description via a multimodal LLM (if an llm_client is configured).