소스 검색

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

tags/v1.0.0
roxie 6 년 전
부모
커밋
dd78662f23
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      cogs/selfassign.py

+ 2
- 2
cogs/selfassign.py 파일 보기

@@ -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…
취소
저장