aboutsummaryrefslogtreecommitdiff
path: root/discord/ext/commands/cog.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2019-04-20 17:20:58 -0400
committerRapptz <[email protected]>2019-04-20 17:20:58 -0400
commit919dbcafb33eb4e2bb595d7e607f525cf2d02178 (patch)
tree206ca4b5430c72854cc818c55d82ce8a641ff9ee /discord/ext/commands/cog.py
parent[commands] Clean docstrings in Command.parents and Command.root_parent (diff)
downloaddiscord.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.py5
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.