From 919dbcafb33eb4e2bb595d7e607f525cf2d02178 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 20 Apr 2019 17:20:58 -0400 Subject: Consistent use of __all__ to prevent merge conflicts. --- discord/channel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'discord/channel.py') 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: -- cgit v1.2.3