From ad01da308dfe3b4a0e7d0f7c23224d16c9c8cf95 Mon Sep 17 00:00:00 2001 From: Divit <56664482+DIMAX99@users.noreply.github.com> Date: Mon, 16 Dec 2024 21:48:33 +0530 Subject: [PATCH] fix issue #65 --- src/markitdown/_markitdown.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/markitdown/_markitdown.py b/src/markitdown/_markitdown.py index 96997cf..80d9c30 100644 --- a/src/markitdown/_markitdown.py +++ b/src/markitdown/_markitdown.py @@ -1071,8 +1071,7 @@ class MarkItDown: if ext == "": return # if ext not in extensions: - if True: - extensions.append(ext) + extensions.append(ext) def _guess_ext_magic(self, path): """Use puremagic (a Python implementation of libmagic) to guess a file's extension based on the first few bytes."""