Fixed prefer_emojis missing from __slots__ in PycordGuild

This commit is contained in:
2025-05-03 01:09:11 +02:00
parent f2e01e3b85
commit 798f5ac529

View File

@@ -17,7 +17,7 @@ logger: Logger = get_logger(__name__)
class PycordGuild: class PycordGuild:
"""Dataclass of DB entry of a guild""" """Dataclass of DB entry of a guild"""
__slots__ = ("_id", "id", "channel_id", "category_id", "timezone") __slots__ = ("_id", "id", "channel_id", "category_id", "timezone", "prefer_emojis")
__short_name__ = "guild" __short_name__ = "guild"
__collection__ = col_guilds __collection__ = col_guilds