aboutsummaryrefslogtreecommitdiff
path: root/discord/channel.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2019-04-20 17:20:58 -0400
committerRapptz <[email protected]>2019-04-20 17:20:58 -0400
commit919dbcafb33eb4e2bb595d7e607f525cf2d02178 (patch)
tree206ca4b5430c72854cc818c55d82ce8a641ff9ee /discord/channel.py
parent[commands] Clean docstrings in Command.parents and Command.root_parent (diff)
downloaddiscord.py-919dbcafb33eb4e2bb595d7e607f525cf2d02178.tar.xz
discord.py-919dbcafb33eb4e2bb595d7e607f525cf2d02178.zip
Consistent use of __all__ to prevent merge conflicts.
Diffstat (limited to 'discord/channel.py')
-rw-r--r--discord/channel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/channel.py b/discord/channel.py
index 0d472a11..c346bfcc 100644
--- a/discord/channel.py
+++ b/discord/channel.py
@@ -36,7 +36,7 @@ from .asset import Asset
from .errors import ClientException, NoMoreItems
from .webhook import Webhook
-__all__ = [
+__all__ = (
'TextChannel',
'VoiceChannel',
'DMChannel',
@@ -44,7 +44,7 @@ __all__ = [
'StoreChannel',
'GroupChannel',
'_channel_factory',
-]
+)
async def _single_delete_strategy(messages):
for m in messages: