Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
edknv committed Feb 27, 2025
1 parent 96b078f commit fbf6e40
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/nv_ingest_client/util/file_processing/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ class DocumentTypeEnum(str, Enum):
tiff = "tiff"
txt = "text"
mp3 = "mp3"
wav = "wav"
wav = "wav"


# Maps MIME types to DocumentTypeEnum
MIME_TO_DOCUMENT_TYPE = {
Expand Down Expand Up @@ -66,7 +67,7 @@ class DocumentTypeEnum(str, Enum):
"tiff": DocumentTypeEnum.tiff,
"txt": DocumentTypeEnum.txt,
"mp3": DocumentTypeEnum.mp3,
"wav": DocumentTypeEnum.wav,
"wav": DocumentTypeEnum.wav,
# Add more as needed
}

Expand Down

0 comments on commit fbf6e40

Please sign in to comment.