Rebranding to TuneBot + updated pyproject.toml

This commit is contained in:
2021-11-06 15:58:10 +01:00
parent c9ffc06e51
commit aed057daa4
8 changed files with 22 additions and 22 deletions
+3 -3
View File
@@ -12,12 +12,12 @@ import discord
from discord.ext import commands
from discord.ext.commands.context import Context
from bot import ChristmasBot
from bot import TuneBot
from utils.classes import BaseCog
class OwnerCog(BaseCog):
def __init__(self, bot: ChristmasBot):
def __init__(self, bot: TuneBot):
super().__init__(bot)
self._last_result = None
@@ -209,5 +209,5 @@ class OwnerCog(BaseCog):
await message.edit(content=f"```fix\n{content}\n```")
def setup(bot: ChristmasBot):
def setup(bot: TuneBot):
bot.add_cog(OwnerCog(bot))