From 45373e1f993ea0137ce495f954ccf5b43504a051 Mon Sep 17 00:00:00 2001 From: ths_dev <61903983+TheMisterSenpai@users.noreply.github.com> Date: Mon, 27 Jun 2022 22:59:26 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=A5=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- melisa/models/guild/guild.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/melisa/models/guild/guild.py b/melisa/models/guild/guild.py index d4e81b4..27ef5c5 100644 --- a/melisa/models/guild/guild.py +++ b/melisa/models/guild/guild.py @@ -621,7 +621,7 @@ class Guild(APIModelBase): await self._client.rest.remove_guild_ban(self.id, user_id, reason=reason) - async def emojis( + async def fetch_emojis( self ): """|coro| @@ -640,7 +640,7 @@ class Guild(APIModelBase): await self._client.rest.list_guild_emojis(self.id) - async def emoji( + async def fetch_emoji( self, emoji_id: Union[Snowflake, str, int] ):