aboutsummaryrefslogtreecommitdiff
path: root/discord/raw_models.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/raw_models.py')
-rw-r--r--discord/raw_models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/raw_models.py b/discord/raw_models.py
index 9bb7f77d..22aad5ce 100644
--- a/discord/raw_models.py
+++ b/discord/raw_models.py
@@ -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: