mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-04-21 00:07:51 +00:00
[commands] Add missing decorator signs
This commit is contained in:
parent
354d4bace4
commit
45f32a0ff3
@ -18,7 +18,7 @@ Bot
|
||||
.. autoclass:: discord.ext.commands.Bot
|
||||
:members:
|
||||
:inherited-members:
|
||||
:exclude-members: after_invoke, before_invoke, check, check_once, command, event, group, listen
|
||||
:exclude-members: after_invoke, before_invoke, check, check_once, command, event, group, hybrid_command, hybrid_group, listen
|
||||
|
||||
.. automethod:: Bot.after_invoke()
|
||||
:decorator:
|
||||
@ -41,6 +41,12 @@ Bot
|
||||
.. automethod:: Bot.group(*args, **kwargs)
|
||||
:decorator:
|
||||
|
||||
.. automethod:: Bot.hybrid_command(name=..., with_app_command=True, *args, **kwargs)
|
||||
:decorator:
|
||||
|
||||
.. automethod:: Bot.hybrid_group(name=..., with_app_command=True, *args, **kwargs)
|
||||
:decorator:
|
||||
|
||||
.. automethod:: Bot.listen(name=None)
|
||||
:decorator:
|
||||
|
||||
@ -188,11 +194,14 @@ HybridCommand
|
||||
.. autoclass:: discord.ext.commands.HybridCommand
|
||||
:members:
|
||||
:special-members: __call__
|
||||
:exclude-members: after_invoke, before_invoke, error
|
||||
:exclude-members: after_invoke, autocomplete, before_invoke, error
|
||||
|
||||
.. automethod:: HybridCommand.after_invoke()
|
||||
:decorator:
|
||||
|
||||
.. automethod:: HybridCommand.autocomplete(name)
|
||||
:decorator:
|
||||
|
||||
.. automethod:: HybridCommand.before_invoke()
|
||||
:decorator:
|
||||
|
||||
@ -207,11 +216,14 @@ HybridGroup
|
||||
.. autoclass:: discord.ext.commands.HybridGroup
|
||||
:members:
|
||||
:inherited-members:
|
||||
:exclude-members: after_invoke, before_invoke, command, error, group
|
||||
:exclude-members: after_invoke, autocomplete, before_invoke, command, error, group
|
||||
|
||||
.. automethod:: HybridGroup.after_invoke()
|
||||
:decorator:
|
||||
|
||||
.. automethod:: HybridGroup.autocomplete(name)
|
||||
:decorator:
|
||||
|
||||
.. automethod:: HybridGroup.before_invoke()
|
||||
:decorator:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user