diff options
| author | Rapptz <[email protected]> | 2019-04-20 17:20:58 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-04-20 17:20:58 -0400 |
| commit | 919dbcafb33eb4e2bb595d7e607f525cf2d02178 (patch) | |
| tree | 206ca4b5430c72854cc818c55d82ce8a641ff9ee /discord/webhook.py | |
| parent | [commands] Clean docstrings in Command.parents and Command.root_parent (diff) | |
| download | discord.py-919dbcafb33eb4e2bb595d7e607f525cf2d02178.tar.xz discord.py-919dbcafb33eb4e2bb595d7e607f525cf2d02178.zip | |
Consistent use of __all__ to prevent merge conflicts.
Diffstat (limited to 'discord/webhook.py')
| -rw-r--r-- | discord/webhook.py | 7 |
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. |