From ee07f72906deb2828c5f4c2682f6272734997c72 Mon Sep 17 00:00:00 2001 From: Soheab_ <33902984+Soheab@users.noreply.github.com> Date: Wed, 25 Jan 2023 16:13:47 +0100 Subject: [PATCH] Add delete_after kwarg to InteractionMessage.edit --- discord/interactions.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/discord/interactions.py b/discord/interactions.py index e7ff641b7..dbdb66a87 100644 --- a/discord/interactions.py +++ b/discord/interactions.py @@ -1051,6 +1051,7 @@ class InteractionMessage(Message): attachments: Sequence[Union[Attachment, File]] = MISSING, view: Optional[View] = MISSING, allowed_mentions: Optional[AllowedMentions] = None, + delete_after: Optional[float] = None, ) -> InteractionMessage: """|coro| @@ -1079,6 +1080,12 @@ class InteractionMessage(Message): view: Optional[:class:`~discord.ui.View`] The updated view to update this message with. If ``None`` is passed then the view is removed. + delete_after: Optional[:class:`float`] + If provided, the number of seconds to wait in the background + before deleting the message we just sent. If the deletion fails, + then it is silently ignored. + + .. versionadded:: 2.2 Raises ------- @@ -1096,7 +1103,7 @@ class InteractionMessage(Message): :class:`InteractionMessage` The newly edited message. """ - return await self._state._interaction.edit_original_response( + res = await self._state._interaction.edit_original_response( content=content, embeds=embeds, embed=embed, @@ -1104,6 +1111,9 @@ class InteractionMessage(Message): view=view, allowed_mentions=allowed_mentions, ) + if delete_after is not None: + await self.delete(delay=delete_after) + return res async def add_files(self, *files: File) -> InteractionMessage: r"""|coro|