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

@@ -4,7 +4,7 @@ from discord.ext import commands
from server_config import ServerConfig
import checks

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

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

Loading…
Cancel
Save