From c0982f4797c7d09773887b0bc895c664a3381a38 Mon Sep 17 00:00:00 2001 From: Dougal Matthews Date: Fri, 7 Apr 2017 10:46:23 +0100 Subject: [PATCH] Make the Result class more convienient to use Action was added to mistral_lib.actions to make it simpler to use. However, generally you also need the Result class. This adds it in the same place, so actions developers only need to import one module to access both classes. Change-Id: I51ae3440ac62ebad5ae13a5e3edf01df66af71c7 --- mistral_lib/actions/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mistral_lib/actions/__init__.py b/mistral_lib/actions/__init__.py index 65a83b6..7ead786 100644 --- a/mistral_lib/actions/__init__.py +++ b/mistral_lib/actions/__init__.py @@ -13,5 +13,6 @@ # License for the specific language governing permissions and limitations # under the License. from mistral_lib.actions.base import Action +from mistral_lib.actions.types import Result -__all__ = ['Action'] +__all__ = ['Action', 'Result']