From 65db83d1ff70cb114989d7072d0007ecf55c22d2 Mon Sep 17 00:00:00 2001 From: "Paul R. Tagliamonte" Date: Wed, 10 Apr 2013 20:04:58 -0400 Subject: [PATCH] moving atoms around to make it easier for internals. --- hy/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hy/__init__.py b/hy/__init__.py index 56ffb1d..54936ac 100644 --- a/hy/__init__.py +++ b/hy/__init__.py @@ -23,12 +23,13 @@ __appname__ = "hy" __version__ = "0.9.5" -import hy.importer # NOQA -# we import for side-effects. - from hy.models.expression import HyExpression # NOQA from hy.models.integer import HyInteger # NOQA from hy.models.string import HyString # NOQA from hy.models.symbol import HySymbol # NOQA from hy.models.dict import HyDict # NOQA from hy.models.list import HyList # NOQA + + +import hy.importer # NOQA +# we import for side-effects.