1
0
Fork 0
mirror of synced 2024-06-29 03:30:57 +12:00

moving setup to the top to test

This commit is contained in:
Phxntxm 2016-08-13 21:33:12 -05:00
parent a38c03c2f3
commit aea37395eb

View file

@ -6,13 +6,13 @@ from .utils import checks
import re
import json
def setup(bot):
bot.add_cog(Strawpoll(bot))
getter = re.compile(r'`(?!`)(.*?)`')
multi = re.compile(r'```(.*?)```', re.DOTALL)
def setup(bot):
bot.add_cog(Strawpoll(bot))
class Strawpoll:
"""This class is used to create new strawpoll """