You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Append a unique non-None, non-empty extension to a list of extensions."""
ifextisNone:
return
ext=ext.strip()
ifext=="":
return
# if ext not in extensions:
ifTrue:
extensions.append(ext)
def_append_ext(self, extensions, ext):
"""Append a unique non-None, non-empty extension to a list of extensions."""ifextisNone:
returnext=ext.strip()
ifext=="":
returnextensions.append(ext)
Hello, I am new to this project. Thanks for creating it.
Rather that if condition at line number 1074 we can directly added the ext to extensions.
The text was updated successfully, but these errors were encountered:
DIMAX99
added a commit
to DIMAX99/markitdown
that referenced
this issue
Dec 16, 2024
markitdown/src/markitdown/_markitdown.py
Lines 1066 to 1075 in 81e3f24
Hello, I am new to this project. Thanks for creating it.
Rather that if condition at line number 1074 we can directly added the ext to extensions.
The text was updated successfully, but these errors were encountered: