aboutsummaryrefslogtreecommitdiff
path: root/discord/webhook.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/webhook.py')
-rw-r--r--discord/webhook.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/discord/webhook.py b/discord/webhook.py
index 6343b852..1317e627 100644
--- a/discord/webhook.py
+++ b/discord/webhook.py
@@ -36,7 +36,12 @@ from .errors import InvalidArgument, HTTPException, Forbidden, NotFound
from .user import BaseUser, User
from .asset import Asset
-__all__ = ['WebhookAdapter', 'AsyncWebhookAdapter', 'RequestsWebhookAdapter', 'Webhook']
+__all__ = (
+ 'WebhookAdapter',
+ 'AsyncWebhookAdapter',
+ 'RequestsWebhookAdapter',
+ 'Webhook',
+)
class WebhookAdapter:
"""Base class for all webhook adapters.