Browse Source

Looking closer to a finished cog, just without any of the checks and error handleing.

tags/v1.0.0
roxie 6 years ago
parent
commit
dd78662f23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      cogs/selfassign.py

+ 2
- 2
cogs/selfassign.py View File

from server_config import ServerConfig from server_config import ServerConfig
import checks import checks


class selfAssign():
class SelfAssign():
def __init__(self, Bot): def __init__(self, Bot):
self.bot = Bot self.bot = Bot
self.con = ServerConfig() self.con = ServerConfig()
return await self.bot.say("That role was not in the list.") return await self.bot.say("That role was not in the list.")


def setup(Bot): def setup(Bot):
Bot.add_cog(selfAssign(Bot))
Bot.add_cog(SelfAssign(Bot))

Loading…
Cancel
Save