From 7248da4e158457ddbd138ea4b026fcccf0b5ae3e Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Thu, 29 Jan 2026 09:26:02 -0800 Subject: [PATCH] Defines the public interface better --- src/documents/plugins/date_parsing/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/documents/plugins/date_parsing/__init__.py b/src/documents/plugins/date_parsing/__init__.py index df5b2c91d..a47043eb0 100644 --- a/src/documents/plugins/date_parsing/__init__.py +++ b/src/documents/plugins/date_parsing/__init__.py @@ -90,3 +90,11 @@ def get_date_parser() -> DateParserPluginBase: # 3. Instantiate the discovered class with the config return parser_class(config=config) + + +__all__ = [ + "DateParserConfig", + "DateParserPluginBase", + "RegexDateParserPlugin", + "get_date_parser", +]