From 50e66d4072670b449e8371b3a28db0cd7726a73a Mon Sep 17 00:00:00 2001 From: Rapptz Date: Thu, 29 Dec 2022 06:56:15 -0500 Subject: [PATCH] Add delete_after to Interaction.edit_message Closes #9415 --- discord/interactions.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/discord/interactions.py b/discord/interactions.py index 1095b59e2..36a165e2e 100644 --- a/discord/interactions.py +++ b/discord/interactions.py @@ -806,6 +806,7 @@ class InteractionResponse: attachments: Sequence[Union[Attachment, File]] = MISSING, view: Optional[View] = MISSING, allowed_mentions: Optional[AllowedMentions] = MISSING, + delete_after: Optional[float] = None, ) -> None: """|coro| @@ -835,6 +836,12 @@ class InteractionResponse: allowed_mentions: Optional[:class:`~discord.AllowedMentions`] Controls the mentions being processed in this message. See :meth:`.Message.edit` for more information. + delete_after: :class:`float` + If provided, the number of seconds to wait in the background + before deleting the message we just edited. If the deletion fails, + then it is silently ignored. + + .. versionadded:: 2.2 Raises ------- @@ -885,6 +892,17 @@ class InteractionResponse: self._response_type = InteractionResponseType.message_update + if delete_after is not None: + + async def inner_call(delay: float = delete_after): + await asyncio.sleep(delay) + try: + await self._parent.delete_original_response() + except HTTPException: + pass + + asyncio.create_task(inner_call()) + async def send_modal(self, modal: Modal, /) -> None: """|coro|