summaryrefslogtreecommitdiff
path: root/buildstream/__init__.py
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-10-12 00:35:53 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-10-12 00:37:51 +0900
commit4f0bfb4ae0551b1ee10af90a1505c973c9c7863b (patch)
treeb3c8991bc4a665f71262a7269a894c9162cafad3 /buildstream/__init__.py
parent39492db848a193d2d8bc1b827b3bd1934bdd7a3f (diff)
downloadbuildstream-4f0bfb4ae0551b1ee10af90a1505c973c9c7863b.tar.gz
Rename element_enums.py -> types.py
This will be the place to store low level data types used throughout the core, for now this includes public and private types.
Diffstat (limited to 'buildstream/__init__.py')
-rw-r--r--buildstream/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/__init__.py b/buildstream/__init__.py
index 0f6efb0da..658166a99 100644
--- a/buildstream/__init__.py
+++ b/buildstream/__init__.py
@@ -28,9 +28,9 @@ if "_BST_COMPLETION" not in os.environ:
from .utils import UtilError, ProgramNotFoundError
from .sandbox import Sandbox, SandboxFlags
+ from .types import Scope
from .plugin import Plugin
from .source import Source, SourceError, Consistency, SourceFetcher
from .element import Element, ElementError
- from .element_enums import Scope
from .buildelement import BuildElement
from .scriptelement import ScriptElement