diff options
| author | Rapptz <[email protected]> | 2021-07-01 20:42:56 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-07-01 20:42:56 -0400 |
| commit | 4f0e907e442e7add627622967fae8b37b4387cf3 (patch) | |
| tree | ac9b41c3e73ec4fa1100420fc166fddfc797be72 /discord | |
| parent | Show Select.values more prominently in the documentation (diff) | |
| download | discord.py-4f0e907e442e7add627622967fae8b37b4387cf3.tar.xz discord.py-4f0e907e442e7add627622967fae8b37b4387cf3.zip | |
Add ButtonStyle.url alias for ButtonStyle.link
Diffstat (limited to 'discord')
| -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 0c97585f..7edee39d 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -494,6 +494,7 @@ class ButtonStyle(Enum): gray = 2 green = 3 red = 4 + url = 5 def __int__(self): return self.value |