From d8846570ae8184b0ed51841c7db5432baf2c9d24 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Thu, 5 May 2022 01:29:51 -0400 Subject: [PATCH] Remove unnecessary type ignore Despite this except branch is no longer guarded, the exceptional case could still happen if an Object is passed or if a future channel type leads to breakage --- discord/message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/message.py b/discord/message.py index 5643eb2fa..359fc051a 100644 --- a/discord/message.py +++ b/discord/message.py @@ -1422,7 +1422,7 @@ class Message(PartialMessage, Hashable): try: # if the channel doesn't have a guild attribute, we handle that - self.guild = channel.guild # type: ignore + self.guild = channel.guild except AttributeError: self.guild = state._get_guild(utils._get_as_snowflake(data, 'guild_id'))