diff options
| author | Rapptz <[email protected]> | 2019-04-20 17:20:58 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-04-20 17:20:58 -0400 |
| commit | 919dbcafb33eb4e2bb595d7e607f525cf2d02178 (patch) | |
| tree | 206ca4b5430c72854cc818c55d82ce8a641ff9ee /discord/activity.py | |
| parent | [commands] Clean docstrings in Command.parents and Command.root_parent (diff) | |
| download | discord.py-919dbcafb33eb4e2bb595d7e607f525cf2d02178.tar.xz discord.py-919dbcafb33eb4e2bb595d7e607f525cf2d02178.zip | |
Consistent use of __all__ to prevent merge conflicts.
Diffstat (limited to 'discord/activity.py')
| -rw-r--r-- | discord/activity.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/discord/activity.py b/discord/activity.py index 736b875f..98fd5901 100644 --- a/discord/activity.py +++ b/discord/activity.py @@ -30,7 +30,12 @@ from .enums import ActivityType, try_enum from .colour import Colour from .utils import _get_as_snowflake -__all__ = ['Activity', 'Streaming', 'Game', 'Spotify'] +__all__ = ( + 'Activity', + 'Streaming', + 'Game', + 'Spotify', +) """If curious, this is the current schema for an activity. |