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