diff options
| author | Arthur <[email protected]> | 2020-04-12 19:40:49 +0200 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2020-04-14 03:24:46 -0400 |
| commit | ad87bfb395c90d91995f9acb902d37623ea9e952 (patch) | |
| tree | 13c9a334f2fde9662baa57da3c3beed1700029c9 | |
| parent | Fix an FFmpegOpusAudio documentation detail, and some capitalization (diff) | |
| download | discord.py-ad87bfb395c90d91995f9acb902d37623ea9e952.tar.xz discord.py-ad87bfb395c90d91995f9acb902d37623ea9e952.zip | |
Guild.owner may be None for very large guilds.
| -rw-r--r-- | discord/guild.py | 2 |
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 |