From e4e61a463e808f321557d1a5625d6fa00b97b0ee Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Fri, 12 Apr 2013 09:18:25 -0400 Subject: [PATCH] Adding in the new models. --- hy/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hy/__init__.py b/hy/__init__.py index 54936ac..42e3efe 100644 --- a/hy/__init__.py +++ b/hy/__init__.py @@ -25,8 +25,11 @@ __version__ = "0.9.5" from hy.models.expression import HyExpression # NOQA from hy.models.integer import HyInteger # NOQA +from hy.models.keyword import HyKeyword # NOQA +from hy.models.complex import HyComplex # NOQA from hy.models.string import HyString # NOQA from hy.models.symbol import HySymbol # NOQA +from hy.models.float import HyFloat # NOQA from hy.models.dict import HyDict # NOQA from hy.models.list import HyList # NOQA