mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-05 17:36:15 +00:00
Remove extraneous __slots__ assignments
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user