mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-07 10:22:59 +00:00
[lint] Fix incorrect and inconsistent whitespace
Adjust whitespace to be consistent with the rest of the library.
This commit is contained in:
@ -64,7 +64,7 @@ class RawBulkMessageDeleteEvent:
|
||||
__slots__ = ('message_ids', 'channel_id', 'guild_id')
|
||||
|
||||
def __init__(self, data):
|
||||
self.message_ids = { int(x) for x in data.get('ids', []) }
|
||||
self.message_ids = {int(x) for x in data.get('ids', [])}
|
||||
self.channel_id = int(data['channel_id'])
|
||||
|
||||
try:
|
||||
|
Reference in New Issue
Block a user