diff --git a/threadedcomments/__init__.py b/threadedcomments/__init__.py index f612d05..593fb24 100644 --- a/threadedcomments/__init__.py +++ b/threadedcomments/__init__.py @@ -1,14 +1,15 @@ """ Change the attributes you want to customize """ -from threadedcomments.models import ThreadedComment -from threadedcomments.forms import ThreadedCommentForm + # following PEP 440 __version__ = "1.0" def get_model(): + from threadedcomments.models import ThreadedComment return ThreadedComment def get_form(): + from threadedcomments.forms import ThreadedCommentForm return ThreadedCommentForm