From 102648489d744510f78afc0badcd9f972e1dd652 Mon Sep 17 00:00:00 2001 From: dolfies Date: Sun, 3 Jul 2022 12:52:46 -0400 Subject: [PATCH] Stop silencing GUILD_APPLICATION_COMMANDS_UPDATE unknown event warning --- discord/state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/state.py b/discord/state.py index afb22de77..308d80628 100644 --- a/discord/state.py +++ b/discord/state.py @@ -2241,7 +2241,7 @@ class ConnectionState: # Silence "unknown event" warnings for events parsed elsewhere parse_nothing = lambda *_: None parse_thread_member_list_update = parse_nothing # Grabbed directly in Thread.fetch_members - parse_guild_application_commands_update = parse_nothing # Grabbed directly in command iterators + # parse_guild_application_commands_update = parse_nothing # Grabbed directly in command iterators def _get_reaction_user(self, channel: MessageableChannel, user_id: int) -> Optional[Union[User, Member]]: if isinstance(channel, TextChannel):