diff options
author | Tristan van Berkom <tristan@codethink.co.uk> | 2020-09-10 16:09:43 +0900 |
---|---|---|
committer | Tristan van Berkom <tristan@codethink.co.uk> | 2020-09-18 12:36:34 +0900 |
commit | 6a1fd09bd43ac40c579318d73ed3f4be43f6abf3 (patch) | |
tree | d46993151a3cedce781a7401d58abde87f5b86d2 /src/buildstream/__init__.py | |
parent | 9e1e97f97b9f4fa080ca9f0da336425ad9e4366f (diff) | |
download | buildstream-6a1fd09bd43ac40c579318d73ed3f4be43f6abf3.tar.gz |
types.py: Adding OverlapAction enumeration
Used to define the behavior of multiple calls to Element.stage_artifact()
and Element.stage_dependency_artifacts()
Diffstat (limited to 'src/buildstream/__init__.py')
-rw-r--r-- | src/buildstream/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/__init__.py b/src/buildstream/__init__.py index 4d151873d..606353af0 100644 --- a/src/buildstream/__init__.py +++ b/src/buildstream/__init__.py @@ -30,7 +30,7 @@ if "_BST_COMPLETION" not in os.environ: from .utils import UtilError, ProgramNotFoundError from .sandbox import Sandbox, SandboxFlags, SandboxCommandError - from .types import CoreWarnings + from .types import CoreWarnings, OverlapAction from .node import MappingNode, Node, ProvenanceInformation, ScalarNode, SequenceNode from .plugin import Plugin from .source import Source, SourceError, SourceFetcher |