Skip to content

Commit

Permalink
Remove __slots__ from abc protocols
Browse files Browse the repository at this point in the history
  • Loading branch information
Rapptz authored and dolfies committed Mar 27, 2023
1 parent 8252147 commit ff1f9cd
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions discord/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ class Snowflake(Protocol):
The model's unique ID.
"""

__slots__ = ()
id: int


Expand Down Expand Up @@ -316,8 +315,6 @@ class User(Snowflake, Protocol):
If the user is a system account.
"""

__slots__ = ()

name: str
discriminator: str
bot: bool
Expand Down

0 comments on commit ff1f9cd

Please sign in to comment.