diff --git a/cheuph/__init__.py b/cheuph/__init__.py index 3d3cbfc..0f329b5 100644 --- a/cheuph/__init__.py +++ b/cheuph/__init__.py @@ -1,5 +1,6 @@ from typing import List +from .config import * from .element import * from .element_supply import * from .exceptions import * @@ -9,6 +10,7 @@ from .tree_list import * from .widgets import * __all__: List[str] = [] +__all__ += config.__all__ __all__ += element.__all__ __all__ += element_supply.__all__ __all__ += exceptions.__all__ diff --git a/cheuph/euphoria/config.py b/cheuph/config.py similarity index 100% rename from cheuph/euphoria/config.py rename to cheuph/config.py