diff options
| author | Rapptz <[email protected]> | 2021-05-28 02:41:52 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-05-28 05:34:21 -0400 |
| commit | ff36aedf7bbc04780cbd4efdbfa278a0b7aee404 (patch) | |
| tree | a3ab33c3c2705c210df31c5e65433ca808569c83 /discord/enums.py | |
| parent | Move ActionRow to its own separate type split from Component (diff) | |
| download | discord.py-ff36aedf7bbc04780cbd4efdbfa278a0b7aee404.tar.xz discord.py-ff36aedf7bbc04780cbd4efdbfa278a0b7aee404.zip | |
Add support for reading SelectMenu components from messages
Diffstat (limited to 'discord/enums.py')
| -rw-r--r-- | discord/enums.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/enums.py b/discord/enums.py index cd6b54b0..fa86767d 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -458,6 +458,7 @@ class VideoQualityMode(Enum): class ComponentType(Enum): action_row = 1 button = 2 + select = 3 def __int__(self): return self.value |