diff --git a/_orangcbot/extensions/tags_reworked.py b/_orangcbot/extensions/tags_reworked.py index 803e57a..267def6 100644 --- a/_orangcbot/extensions/tags_reworked.py +++ b/_orangcbot/extensions/tags_reworked.py @@ -58,7 +58,7 @@ async def callback(self, interaction: nextcord.Interaction) -> None: class TagEditView(nextcord.ui.View): - def __init__(self, ctx: comamnds.Context, db: psycopg2.connection, tag: tuple): + def __init__(self, ctx: commands.Context, db: psycopg2.connection, tag: tuple): super().__init__() self._ctx: commands.Context = ctx self._db: psycopg2.connection = db @@ -135,7 +135,7 @@ async def callback(self, interaction: nextcord.Interaction) -> None: class TagCreationView(nextcord.ui.View): - def __init__(self, ctx: comamnds.Context, db: psycopg2.connection): + def __init__(self, ctx: commands.Context, db: psycopg2.connection): super().__init__() self._ctx: commands.Context = ctx self._db: psycopg2.connection = db