aboutsummaryrefslogtreecommitdiff
path: root/discord/webhook.py
diff options
context:
space:
mode:
authorHornwitser <[email protected]>2018-08-07 14:24:14 +0200
committerRapptz <[email protected]>2018-08-22 21:43:55 -0400
commitc557ee33caae30c84163919bd740259ab0200654 (patch)
tree5095d424d0f423e5584f0363d41534736d721fc3 /discord/webhook.py
parent[lint] Replace deprecated Logger function warn (diff)
downloaddiscord.py-c557ee33caae30c84163919bd740259ab0200654.tar.xz
discord.py-c557ee33caae30c84163919bd740259ab0200654.zip
[lint] Fix types used for __slots__ and __all__
Stay consistent with the rest of the library and use lists for module __all__ values and tuples for class __slots__ attributes.
Diffstat (limited to 'discord/webhook.py')
-rw-r--r--discord/webhook.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/webhook.py b/discord/webhook.py
index 7fdcf0f8..d9671b82 100644
--- a/discord/webhook.py
+++ b/discord/webhook.py
@@ -34,7 +34,7 @@ from . import utils
from .errors import InvalidArgument, HTTPException, Forbidden, NotFound
from .user import BaseUser, User
-__all__ = ('WebhookAdapter', 'AsyncWebhookAdapter', 'RequestsWebhookAdapter', 'Webhook')
+__all__ = ['WebhookAdapter', 'AsyncWebhookAdapter', 'RequestsWebhookAdapter', 'Webhook']
class WebhookAdapter:
"""Base class for all webhook adapters.