diff options
| author | Rapptz <[email protected]> | 2019-06-09 01:23:14 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-06-09 01:24:41 -0400 |
| commit | af4e3ad79b4254c228a2aaf77951851c6b5eba2a (patch) | |
| tree | 9a45f98edf46bb3bd2a0ec6acd8eb8e762c0bb64 /discord | |
| parent | Remove unused import. (diff) | |
| download | discord.py-af4e3ad79b4254c228a2aaf77951851c6b5eba2a.tar.xz discord.py-af4e3ad79b4254c228a2aaf77951851c6b5eba2a.zip | |
Some documentation touch-ups and missing stuff in the changelog.
Diffstat (limited to 'discord')
| -rw-r--r-- | discord/ext/commands/core.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index f951ab8e..7eca1b20 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -167,6 +167,8 @@ class Command(_BaseCommand): regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``. + invoked_subcommand: Optional[:class:`Command`] + The subcommand that was invoked, if any. ignore_extra: :class:`bool` If ``True``\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` |