From c412ad238eb5d683bb41fef7f61d446689b2062b Mon Sep 17 00:00:00 2001 From: Bobloy Date: Thu, 3 May 2018 12:30:15 -0400 Subject: [PATCH] import order --- chatter/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chatter/__init__.py b/chatter/__init__.py index 3056b82..cc101b7 100644 --- a/chatter/__init__.py +++ b/chatter/__init__.py @@ -1,9 +1,11 @@ -from .chat import Chatter from . import chatterbot +from .chat import Chatter + def setup(bot): bot.add_cog(Chatter(bot)) + __all__ = ( 'chatterbot' )