From 5cfdb8f8e228e22638c571ff58e39b6355303f7a Mon Sep 17 00:00:00 2001 From: Joscha Date: Thu, 16 May 2019 11:11:32 +0000 Subject: [PATCH] Move config to main package --- cheuph/__init__.py | 2 ++ cheuph/{euphoria => }/config.py | 0 2 files changed, 2 insertions(+) rename cheuph/{euphoria => }/config.py (100%) 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