From 9d29f5dc2e17239fd660a2f6bc552f9e559993dc Mon Sep 17 00:00:00 2001 From: Roman Isecke <136338424+rbiseck3@users.noreply.github.com> Date: Sat, 12 Aug 2023 15:21:07 -0400 Subject: [PATCH] Add init file to make notion module discoverable (#1100) One of the added modules was missing an __init__.py file which made it undiscoverable in the path when running as a cli command via console script rather than the PYTHONPATH=. python ... approach. --- CHANGELOG.md | 2 ++ unstructured/ingest/connector/notion/types/__init__.py | 0 2 files changed, 2 insertions(+) create mode 100644 unstructured/ingest/connector/notion/types/__init__.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c8db2097..6682b1dc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ ### Fixes +* make notion module discoverable + ## 0.9.2 diff --git a/unstructured/ingest/connector/notion/types/__init__.py b/unstructured/ingest/connector/notion/types/__init__.py new file mode 100644 index 000000000..e69de29bb