From 7874951a180c93ad43879681c4b36cc0eac8f0f4 Mon Sep 17 00:00:00 2001 From: Paillat-dev Date: Sun, 9 Mar 2025 18:22:10 +0100 Subject: [PATCH] :pencil2: Ops --- src/pycord_rest/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pycord_rest/app.py b/src/pycord_rest/app.py index 984cd40..16dffc2 100644 --- a/src/pycord_rest/app.py +++ b/src/pycord_rest/app.py @@ -153,7 +153,7 @@ class App(discord.Bot): if interaction.type is InteractionType.auto_complete: self._bot.dispatch("application_command_auto_complete", interaction, command) - await super().s(interaction, command) # pyright: ignore [reportArgumentType, reportUnknownMemberType] + await super().on_application_command_auto_complete(interaction, command) # pyright: ignore [reportArgumentType, reportUnknownMemberType] return None ctx = await self.get_application_context(interaction)