|
|
@ -408,13 +408,17 @@ class Command(_BaseCommand, Generic[CogT, P, T]): |
|
|
|
|
|
|
|
self.params = get_signature_parameters(function, globalns) |
|
|
|
|
|
|
|
def add_check(self, func: Check) -> None: |
|
|
|
def add_check(self, func: Check, /) -> None: |
|
|
|
"""Adds a check to the command. |
|
|
|
|
|
|
|
This is the non-decorator interface to :func:`.check`. |
|
|
|
|
|
|
|
.. versionadded:: 1.3 |
|
|
|
|
|
|
|
.. versionchanged:: 2.0 |
|
|
|
|
|
|
|
``func`` parameter is now positional-only. |
|
|
|
|
|
|
|
Parameters |
|
|
|
----------- |
|
|
|
func |
|
|
@ -423,7 +427,7 @@ class Command(_BaseCommand, Generic[CogT, P, T]): |
|
|
|
|
|
|
|
self.checks.append(func) |
|
|
|
|
|
|
|
def remove_check(self, func: Check) -> None: |
|
|
|
def remove_check(self, func: Check, /) -> None: |
|
|
|
"""Removes a check from the command. |
|
|
|
|
|
|
|
This function is idempotent and will not raise an exception |
|
|
@ -431,6 +435,10 @@ class Command(_BaseCommand, Generic[CogT, P, T]): |
|
|
|
|
|
|
|
.. versionadded:: 1.3 |
|
|
|
|
|
|
|
.. versionchanged:: 2.0 |
|
|
|
|
|
|
|
``func`` parameter is now positional-only. |
|
|
|
|
|
|
|
Parameters |
|
|
|
----------- |
|
|
|
func |
|
|
@ -1156,7 +1164,7 @@ class GroupMixin(Generic[CogT]): |
|
|
|
command.recursively_remove_all_commands() |
|
|
|
self.remove_command(command.name) |
|
|
|
|
|
|
|
def add_command(self, command: Command[CogT, Any, Any]) -> None: |
|
|
|
def add_command(self, command: Command[CogT, Any, Any], /) -> None: |
|
|
|
"""Adds a :class:`.Command` into the internal list of commands. |
|
|
|
|
|
|
|
This is usually not called, instead the :meth:`~.GroupMixin.command` or |
|
|
@ -1165,6 +1173,10 @@ class GroupMixin(Generic[CogT]): |
|
|
|
.. versionchanged:: 1.4 |
|
|
|
Raise :exc:`.CommandRegistrationError` instead of generic :exc:`.ClientException` |
|
|
|
|
|
|
|
.. versionchanged:: 2.0 |
|
|
|
|
|
|
|
``command`` parameter is now positional-only. |
|
|
|
|
|
|
|
Parameters |
|
|
|
----------- |
|
|
|
command: :class:`Command` |
|
|
@ -1194,12 +1206,16 @@ class GroupMixin(Generic[CogT]): |
|
|
|
raise CommandRegistrationError(alias, alias_conflict=True) |
|
|
|
self.all_commands[alias] = command |
|
|
|
|
|
|
|
def remove_command(self, name: str) -> Optional[Command[CogT, Any, Any]]: |
|
|
|
def remove_command(self, name: str, /) -> Optional[Command[CogT, Any, Any]]: |
|
|
|
"""Remove a :class:`.Command` from the internal list |
|
|
|
of commands. |
|
|
|
|
|
|
|
This could also be used as a way to remove aliases. |
|
|
|
|
|
|
|
.. versionchanged:: 2.0 |
|
|
|
|
|
|
|
``name`` parameter is now positional-only. |
|
|
|
|
|
|
|
Parameters |
|
|
|
----------- |
|
|
|
name: :class:`str` |
|
|
@ -1247,7 +1263,7 @@ class GroupMixin(Generic[CogT]): |
|
|
|
if isinstance(command, GroupMixin): |
|
|
|
yield from command.walk_commands() |
|
|
|
|
|
|
|
def get_command(self, name: str) -> Optional[Command[CogT, Any, Any]]: |
|
|
|
def get_command(self, name: str, /) -> Optional[Command[CogT, Any, Any]]: |
|
|
|
"""Get a :class:`.Command` from the internal list |
|
|
|
of commands. |
|
|
|
|
|
|
@ -1257,6 +1273,10 @@ class GroupMixin(Generic[CogT]): |
|
|
|
the subcommand ``bar`` of the group command ``foo``. If a |
|
|
|
subcommand is not found then ``None`` is returned just as usual. |
|
|
|
|
|
|
|
.. versionchanged:: 2.0 |
|
|
|
|
|
|
|
``name`` parameter is now positional-only. |
|
|
|
|
|
|
|
Parameters |
|
|
|
----------- |
|
|
|
name: :class:`str` |
|
|
|