From 4a76464ac993ea91f0785f6377126ac6fb555bba Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 18 Mar 2022 07:37:28 -0400 Subject: [PATCH] Fix return value of Guild.chunk --- discord/guild.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/discord/guild.py b/discord/guild.py index 576792e72..8aabb1fb6 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -3390,7 +3390,7 @@ class Guild(Hashable): await self._state.http.edit_widget(self.id, payload=payload, reason=reason) - async def chunk(self, *, cache: bool = True) -> None: + async def chunk(self, *, cache: bool = True) -> List[Member]: """|coro| Requests all members that belong to this guild. In order to use this, @@ -3409,13 +3409,20 @@ class Guild(Hashable): ------- ClientException The members intent is not enabled. + + Returns + -------- + List[:class:`Member`] + The list of members in the guild. """ if not self._state._intents.members: raise ClientException('Intents.members must be enabled to use this.') if not self._state.is_guild_evicted(self): - await self._state.chunk_guild(self, cache=cache) + return await self._state.chunk_guild(self, cache=cache) + + return [] async def query_members( self,