1
0
Fork 0
mirror of synced 2024-07-01 12:41:40 +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 re
import json import json
def setup(bot):
bot.add_cog(Strawpoll(bot))
getter = re.compile(r'`(?!`)(.*?)`') getter = re.compile(r'`(?!`)(.*?)`')
multi = re.compile(r'```(.*?)```', re.DOTALL) multi = re.compile(r'```(.*?)```', re.DOTALL)
def setup(bot):
bot.add_cog(Strawpoll(bot))
class Strawpoll: class Strawpoll:
"""This class is used to create new strawpoll """ """This class is used to create new strawpoll """