Browse Source

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
pull/7999/head
Rapptz 3 years ago
parent
commit
d8846570ae
  1. 2
      discord/message.py

2
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'))

Loading…
Cancel
Save