[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:
Hornwitser
2018-08-07 14:24:14 +02:00
committed by Rapptz
parent d20772c680
commit c557ee33ca
4 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ from .enums import ActivityType, try_enum
from .colour import Colour
import datetime
__all__ = ('Activity', 'Streaming', 'Game', 'Spotify')
__all__ = ['Activity', 'Streaming', 'Game', 'Spotify']
"""If curious, this is the current schema for an activity.