aboutsummaryrefslogtreecommitdiff
path: root/discord/webhook/sync.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2021-06-28 21:50:08 -0400
committerRapptz <[email protected]>2021-06-28 23:36:20 -0400
commitf7d551953bdfb34f25df718b065714945047ebb4 (patch)
tree909f7f4fffeb37e030c70cc23e4d9d5c1a1f00f8 /discord/webhook/sync.py
parentSet Message.guild from guild_id if unavailable through Message.channel (diff)
downloaddiscord.py-f7d551953bdfb34f25df718b065714945047ebb4.tar.xz
discord.py-f7d551953bdfb34f25df718b065714945047ebb4.zip
Remove extraneous __slots__ assignments
Diffstat (limited to 'discord/webhook/sync.py')
-rw-r--r--discord/webhook/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/webhook/sync.py b/discord/webhook/sync.py
index 2d1557f5..021c0ef9 100644
--- a/discord/webhook/sync.py
+++ b/discord/webhook/sync.py
@@ -494,7 +494,7 @@ class SyncWebhook(BaseWebhook):
.. versionadded:: 2.0
"""
- __slots__: Tuple[str, ...] = BaseWebhook.__slots__ + ('session',)
+ __slots__: Tuple[str, ...] = ('session',)
def __init__(self, data: WebhookPayload, session: Session, token: Optional[str] = None, state=None):
super().__init__(data, token, state)