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/ext/commands/cog.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/ext/commands/cog.py')
| -rw-r--r-- | discord/ext/commands/cog.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/discord/ext/commands/cog.py b/discord/ext/commands/cog.py index 6d5be625..66988a02 100644 --- a/discord/ext/commands/cog.py +++ b/discord/ext/commands/cog.py @@ -28,7 +28,10 @@ import inspect import copy from ._types import _BaseCommand -__all__ = ('CogMeta', 'Cog') +__all__ = ( + 'CogMeta', + 'Cog', +) class CogMeta(type): """Aćmetaclass for defining a cog. |