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/help.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/help.py')
| -rw-r--r-- | discord/ext/commands/help.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/ext/commands/help.py b/discord/ext/commands/help.py index cafc20f3..19c762e8 100644 --- a/discord/ext/commands/help.py +++ b/discord/ext/commands/help.py @@ -33,12 +33,12 @@ import discord.utils from .core import Group, Command from .errors import CommandError -__all__ = [ +__all__ = ( 'Paginator', 'HelpCommand', 'DefaultHelpCommand', 'MinimalHelpCommand', -] +) # help -> shows info of bot on top/bottom and lists subcommands # help command -> shows detailed info of command |