import order

This commit is contained in:
Bobloy 2018-05-03 12:30:15 -04:00
parent af41b0c015
commit c412ad238e

View File

@ -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'
)