Skip to content

Commit

Permalink
dont import twice
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed May 28, 2024
1 parent adf7197 commit 2cd5e5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bots/jabrils/EdenLogosCharacterCog.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from discord.ext import commands
from cogs.Eden2Cog import Eden2Cog
from cogs.LogosCharacterCog import LogosCharacterCog


class EdenEden2Cog(Eden2Cog):
class EdenEden2Cog(LogosCharacterCog):
def __init__(self, bot: commands.bot) -> None:
super().__init__(bot)


def setup(bot: commands.Bot) -> None:
bot.add_cog(EdenEden2Cog(bot))
bot.add_cog(LogosCharacterCog(bot))

0 comments on commit 2cd5e5c

Please sign in to comment.