aboutsummaryrefslogtreecommitdiff
path: root/discord/guild.py
diff options
context:
space:
mode:
authorNadir Chowdhury <[email protected]>2021-04-07 07:30:32 +0100
committerGitHub <[email protected]>2021-04-07 02:30:32 -0400
commit89456022cf952a0d094d3ed438e279db02535632 (patch)
tree216671c8bfeb6c861236dc42ba82a7b08cf52f69 /discord/guild.py
parentAdd Embed.__bool__ (diff)
downloaddiscord.py-89456022cf952a0d094d3ed438e279db02535632.tar.xz
discord.py-89456022cf952a0d094d3ed438e279db02535632.zip
Add `__all__` to remaining modules
Diffstat (limited to 'discord/guild.py')
-rw-r--r--discord/guild.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/discord/guild.py b/discord/guild.py
index 8883ff4a..51d2004f 100644
--- a/discord/guild.py
+++ b/discord/guild.py
@@ -44,6 +44,9 @@ from .asset import Asset
from .flags import SystemChannelFlags
from .integrations import Integration
+__all__ = (
+ 'Guild',
+)
BanEntry = namedtuple('BanEntry', 'reason user')
_GuildLimit = namedtuple('_GuildLimit', 'emoji bitrate filesize')