mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-08 10:53:10 +00:00
[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.
This commit is contained in:
@ -36,7 +36,7 @@ import discord.abc
|
||||
import time
|
||||
import asyncio
|
||||
|
||||
__all__ = ('TextChannel', 'VoiceChannel', 'DMChannel', 'CategoryChannel', 'GroupChannel', '_channel_factory')
|
||||
__all__ = ['TextChannel', 'VoiceChannel', 'DMChannel', 'CategoryChannel', 'GroupChannel', '_channel_factory']
|
||||
|
||||
async def _single_delete_strategy(messages):
|
||||
for m in messages:
|
||||
|
Reference in New Issue
Block a user