Guild.owner may be None for very large guilds.

This commit is contained in:
Arthur 2020-04-12 19:40:49 +02:00 committed by Rapptz
parent 032a866fec
commit ad87bfb395

View File

@ -537,7 +537,7 @@ class Guild(Hashable):
@property
def owner(self):
""":class:`Member`: The member that owns the guild."""
"""Optional[:class:`Member`]: The member that owns the guild."""
return self.get_member(self.owner_id)
@property