diff options
| author | Nadir Chowdhury <[email protected]> | 2021-04-07 07:30:32 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-04-07 02:30:32 -0400 |
| commit | 89456022cf952a0d094d3ed438e279db02535632 (patch) | |
| tree | 216671c8bfeb6c861236dc42ba82a7b08cf52f69 /discord/widget.py | |
| parent | Add Embed.__bool__ (diff) | |
| download | discord.py-89456022cf952a0d094d3ed438e279db02535632.tar.xz discord.py-89456022cf952a0d094d3ed438e279db02535632.zip | |
Add `__all__` to remaining modules
Diffstat (limited to 'discord/widget.py')
| -rw-r--r-- | discord/widget.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/discord/widget.py b/discord/widget.py index 7f3ed4c8..6a7a8adf 100644 --- a/discord/widget.py +++ b/discord/widget.py @@ -28,6 +28,12 @@ from .activity import create_activity from .invite import Invite from .enums import Status, try_enum +__all__ = ( + 'WidgetChannel', + 'WidgetMember', + 'Widget', +) + class WidgetChannel: """Represents a "partial" widget channel. |