diff options
| author | Josh <[email protected]> | 2021-05-05 21:42:39 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-05 07:42:39 -0400 |
| commit | 6622be9f464507e5a93dd3544465679f5881bd62 (patch) | |
| tree | abb9c74e66a446b26faa180d9c890590e3167e89 | |
| parent | Add discovery_splash and community field to Guild.edit (diff) | |
| download | discord.py-6622be9f464507e5a93dd3544465679f5881bd62.tar.xz discord.py-6622be9f464507e5a93dd3544465679f5881bd62.zip | |
Make GuildChannel inherit Snowflake
| -rw-r--r-- | discord/abc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/abc.py b/discord/abc.py index 3ded0d59..d7d965af 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -179,7 +179,7 @@ class _Overwrites: return self.type == 1 -class GuildChannel(Protocol): +class GuildChannel(Snowflake, Protocol): """An ABC that details the common operations on a Discord guild channel. The following implement this ABC: |