From 53b27d346dd82594b0dbe9662a352b9bec2b0c34 Mon Sep 17 00:00:00 2001 From: pomdtr Date: Wed, 20 Dec 2023 15:48:56 +0100 Subject: [PATCH] limit the number of items exported by default --- pkg/python/sunbeam/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkg/python/sunbeam/__init__.py b/pkg/python/sunbeam/__init__.py index 25e3adbc..b6fbb701 100644 --- a/pkg/python/sunbeam/__init__.py +++ b/pkg/python/sunbeam/__init__.py @@ -1,6 +1,7 @@ """Sunbeam Types""" -from .manifest import * -from .page import * +from .manifest import Manifest, Command +from .page import List, Detail, ListItem, Action -__version__ = "0.2.3" +__version__ = "0.2.4" +__all__ = ["Manifest", "Command", "List", "Detail", "ListItem", "Action"]