aboutsummaryrefslogtreecommitdiff
path: root/discord/guild.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/guild.py')
-rw-r--r--discord/guild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/guild.py b/discord/guild.py
index b00f9ebc..41545f77 100644
--- a/discord/guild.py
+++ b/discord/guild.py
@@ -736,7 +736,7 @@ class Guild(Hashable):
"""List[:class:`Member`]: A list of members that belong to this guild."""
return list(self._members.values())
- def get_member(self, user_id: int) -> Optional[Member]:
+ def get_member(self, user_id: int, /) -> Optional[Member]:
"""Returns a member with the given ID.
Parameters