From 061462de22be8f4e429c109511455d7bd9a76f8b Mon Sep 17 00:00:00 2001 From: Roman Isecke <136338424+rbiseck3@users.noreply.github.com> Date: Wed, 5 Mar 2025 12:52:00 -0500 Subject: [PATCH] fix/drop ndjson extra dep (#3944) --- CHANGELOG.md | 2 +- unstructured/__version__.py | 2 +- unstructured/file_utils/model.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6276b784..04cab87f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.16.24-dev3 +## 0.16.24-dev4 ### Enhancements diff --git a/unstructured/__version__.py b/unstructured/__version__.py index 024270cdb..460393893 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.16.24-dev3" # pragma: no cover +__version__ = "0.16.24-dev4" # pragma: no cover diff --git a/unstructured/file_utils/model.py b/unstructured/file_utils/model.py index 20edae032..d651c057d 100644 --- a/unstructured/file_utils/model.py +++ b/unstructured/file_utils/model.py @@ -292,7 +292,7 @@ class FileType(enum.Enum): NDJSON = ( "ndjson", "ndjson", - ["ndjson"], + cast(list[str], []), None, [".ndjson"], "application/x-ndjson",