From b3ccfa89106c4d3cfaf6af9efe5d3db9e4fa81cd Mon Sep 17 00:00:00 2001 From: davfsa Date: Sat, 18 Nov 2023 16:28:43 +0100 Subject: [PATCH] Remove deprecations scheduled for removal in 2.0.0.dev123 --- changes/1762.breaking.md | 1 + hikari/permissions.py | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) create mode 100644 changes/1762.breaking.md diff --git a/changes/1762.breaking.md b/changes/1762.breaking.md new file mode 100644 index 0000000000..2e47c33ce2 --- /dev/null +++ b/changes/1762.breaking.md @@ -0,0 +1 @@ +Remove previously deprecated `Permissions.MANAGE_EMOJIS_AND_STICKERS` diff --git a/hikari/permissions.py b/hikari/permissions.py index 61587467a7..f709c49be8 100644 --- a/hikari/permissions.py +++ b/hikari/permissions.py @@ -236,9 +236,6 @@ class Permissions(enums.Flag): (or their owner's account in the case of bot users) and the guild owner. """ - MANAGE_EMOJIS_AND_STICKERS = enums.deprecated(MANAGE_GUILD_EXPRESSIONS, removal_version="2.0.0.dev123") - """Deprecated alias for MANAGE_GUILD_EXPRESSIONS.""" - USE_APPLICATION_COMMANDS = 1 << 31 """Allows for using the application commands of guild integrations within a text channel."""