From 6a553b2347100df1609ec084411e0889ee4f1b38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Sat, 3 Jul 2021 18:24:57 +0100 Subject: [PATCH] Fix building docs due to missing InteractionMessage in __all__ --- discord/interactions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/discord/interactions.py b/discord/interactions.py index b81dfa08e..5438ae7fc 100644 --- a/discord/interactions.py +++ b/discord/interactions.py @@ -41,6 +41,7 @@ from .webhook.async_ import async_context, Webhook, handle_message_parameters __all__ = ( 'Interaction', + 'InteractionMessage', 'InteractionResponse', )