This commit is contained in:
ths_dev 2022-06-27 22:59:26 +03:00 committed by GitHub
parent e1da3ee781
commit 45373e1f99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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]
):