Consistent use of __all__ to prevent merge conflicts.

This commit is contained in:
Rapptz
2019-04-20 17:20:58 -04:00
parent c6410ea9ab
commit 919dbcafb3
12 changed files with 130 additions and 36 deletions

View File

@ -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: