From daa2f3d6be6de39f3cb47cf5ed1c3c736ad7ecb8 Mon Sep 17 00:00:00 2001 From: John Vinyard Date: Sat, 24 Jun 2017 18:24:39 -0500 Subject: [PATCH] Ensure that ModelExistsError is exported --- featureflow/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/featureflow/__init__.py b/featureflow/__init__.py index cd5d5a3..df7f28a 100644 --- a/featureflow/__init__.py +++ b/featureflow/__init__.py @@ -1,6 +1,6 @@ __version__ = '1.18.14' -from model import BaseModel +from model import BaseModel, ModelExistsError from feature import Feature, JSONFeature, TextFeature, CompressedFeature, \ PickleFeature