diff options
| author | Rapptz <[email protected]> | 2021-07-30 23:10:36 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-07-30 23:10:36 -0400 |
| commit | 6beef898c6254524b24609341fe150f60bbee798 (patch) | |
| tree | d277e0dfd26d9916a47dd78768d3b1d29d22a5b2 /discord/http.py | |
| parent | Fix SyncWebhook not working across thread barriers (diff) | |
| download | discord.py-6beef898c6254524b24609341fe150f60bbee798.tar.xz discord.py-6beef898c6254524b24609341fe150f60bbee798.zip | |
Rename instances of nitro to premium
Diffstat (limited to 'discord/http.py')
| -rw-r--r-- | discord/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/http.py b/discord/http.py index 7c18b701..ada87046 100644 --- a/discord/http.py +++ b/discord/http.py @@ -1173,7 +1173,7 @@ class HTTPClient: def get_sticker(self, sticker_id: Snowflake) -> Response[sticker.Sticker]: return self.request(Route('GET', '/stickers/{sticker_id}', sticker_id=sticker_id)) - def list_nitro_sticker_packs(self) -> Response[sticker.ListNitroStickerPacks]: + def list_premium_sticker_packs(self) -> Response[sticker.ListPremiumStickerPacks]: return self.request(Route('GET', '/sticker-packs')) def get_all_guild_stickers(self, guild_id: Snowflake) -> Response[List[sticker.GuildSticker]]: |