Closed calliecameron closed 1 year ago
It's currently defined as Optional[int]. It should be Optional[str], to match the type in discord.Attachment: https://discordpy.readthedocs.io/en/stable/api.html#discord.Attachment.content_type.
Optional[int]
Optional[str]
@calliecameron Thank you ! can you provide a pull request for that ?
It's currently defined as
Optional[int]
. It should beOptional[str]
, to match the type in discord.Attachment: https://discordpy.readthedocs.io/en/stable/api.html#discord.Attachment.content_type.