I would like to have my bot edit a message if it detects a keyword, i\'m not sure how to edit the message though.
I\'ve looked through the documentation but can\'t s
You can use the Message.edit coroutine. The arguments must be passed as keyword arguments content, embed, or delete_after. You may only edit messages that you have sent.
content
embed
delete_after
await message.edit(content="newcontent")