[lint] Fix incorrect and inconsistent whitespace

Adjust whitespace to be consistent with the rest of the library.
This commit is contained in:
Hornwitser
2018-08-22 21:43:53 -04:00
committed by Rapptz
parent 3679819c53
commit c8b49d37be
26 changed files with 62 additions and 66 deletions
+2 -2
View File
@@ -57,8 +57,8 @@ class VoiceState:
is not currently in a voice channel.
"""
__slots__ = ( 'session_id', 'deaf', 'mute', 'self_mute',
'self_deaf', 'afk', 'channel' )
__slots__ = ('session_id', 'deaf', 'mute', 'self_mute',
'self_deaf', 'afk', 'channel')
def __init__(self, *, data, channel=None):
self.session_id = data.get('session_id')