diff options
Diffstat (limited to 'discord/guild.py')
| -rw-r--r-- | discord/guild.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/discord/guild.py b/discord/guild.py index b8ba0ddd..1d5baf50 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -22,6 +22,8 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +from __future__ import annotations + import copy from collections import namedtuple from typing import Dict, List, Literal, Optional, TYPE_CHECKING, Union, overload @@ -50,6 +52,7 @@ __all__ = ( ) if TYPE_CHECKING: + from .abc import SnowflakeTime from .types.guild import ( Ban as BanPayload ) @@ -1352,7 +1355,7 @@ class Guild(Hashable): return [convert(d) for d in data] - def fetch_members(self, *, limit: int = 1000, after: Optional[abc.SnowflakeTime] = None) -> List[Member]: + def fetch_members(self, *, limit: int = 1000, after: Optional[SnowflakeTime] = None) -> List[Member]: """Retrieves an :class:`.AsyncIterator` that enables receiving the guild's members. In order to use this, :meth:`Intents.members` must be enabled. @@ -2221,8 +2224,8 @@ class Guild(Hashable): self, *, limit: int = 100, - before: Optional[abc.SnowflakeTime] = None, - after: Optional[abc.SnowflakeTime] = None, + before: Optional[SnowflakeTime] = None, + after: Optional[SnowflakeTime] = None, oldest_first: Optional[bool] = None, user: abc.Snowflake = None, action: AuditLogAction = None |