From add711beb783f179a6e6fb512d98a695f4617775 Mon Sep 17 00:00:00 2001 From: Aleksei Kotenko Date: Wed, 17 Jul 2024 14:05:58 +0200 Subject: [PATCH] Configure export classes (#23) --- theine/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/theine/__init__.py b/theine/__init__.py index 457f1b7..4c4c882 100644 --- a/theine/__init__.py +++ b/theine/__init__.py @@ -1,3 +1,5 @@ from theine_core import BloomFilter from .theine import Cache, Memoize + +__all__ = ('Cache', 'BloomFilter', 'Memoize')