aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur <[email protected]>2020-04-12 19:40:49 +0200
committerRapptz <[email protected]>2020-04-14 03:24:46 -0400
commitad87bfb395c90d91995f9acb902d37623ea9e952 (patch)
tree13c9a334f2fde9662baa57da3c3beed1700029c9
parentFix an FFmpegOpusAudio documentation detail, and some capitalization (diff)
downloaddiscord.py-ad87bfb395c90d91995f9acb902d37623ea9e952.tar.xz
discord.py-ad87bfb395c90d91995f9acb902d37623ea9e952.zip
Guild.owner may be None for very large guilds.
-rw-r--r--discord/guild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/guild.py b/discord/guild.py
index 555cafa7..71ca954d 100644
--- a/discord/guild.py
+++ b/discord/guild.py
@@ -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