@ -60,7 +60,7 @@ if TYPE_CHECKING:
from discord . message import Message
from . _types import BotT , Check , ContextT , Coro , CoroFunc , Error , Hook
from . _types import BotT , Check , ContextT , Coro , CoroFunc , Error , Hook , UserCheck
__all__ = (
@ -378,7 +378,7 @@ class Command(_BaseCommand, Generic[CogT, P, T]):
except AttributeError :
checks = kwargs . get ( ' checks ' , [ ] )
self . checks : List [ Check [ ContextT ] ] = checks
self . checks : List [ User Check[ ContextT ] ] = checks
try :
cooldown = func . __commands_cooldown__
@ -458,7 +458,7 @@ class Command(_BaseCommand, Generic[CogT, P, T]):
self . params : Dict [ str , Parameter ] = get_signature_parameters ( function , globalns )
def add_check ( self , func : Check [ ContextT ] , / ) - > None :
def add_check ( self , func : User Check[ ContextT ] , / ) - > None :
""" Adds a check to the command.
This is the non - decorator interface to : func : ` . check ` .
@ -477,7 +477,7 @@ class Command(_BaseCommand, Generic[CogT, P, T]):
self . checks . append ( func )
def remove_check ( self , func : Check [ ContextT ] , / ) - > None :
def remove_check ( self , func : User Check[ ContextT ] , / ) - > None :
""" Removes a check from the command.
This function is idempotent and will not raise an exception
@ -1745,7 +1745,7 @@ def group(
return command ( name = name , cls = cls , * * attrs )
def check ( predicate : Check [ ContextT ] , / ) - > Callable [ [ T ] , T ] :
def check ( predicate : User Check[ ContextT ] , / ) - > Check [ Context T ] :
r """ A decorator that adds a check to the :class:`.Command` or its
subclasses . These checks could be accessed via : attr : ` . Command . checks ` .
@ -1844,7 +1844,7 @@ def check(predicate: Check[ContextT], /) -> Callable[[T], T]:
return decorator # type: ignore
def check_any ( * checks : Check [ ContextT ] ) - > Callable [ [ T ] , T ] :
def check_any ( * checks : Check [ ContextT ] ) - > Check [ Context T ] :
r """ A :func:`check` that is added that checks if any of the checks passed
will pass , i . e . using logical OR .
@ -1910,10 +1910,10 @@ def check_any(*checks: Check[ContextT]) -> Callable[[T], T]:
# if we're here, all checks failed
raise CheckAnyFailure ( unwrapped , errors )
return check ( predicate )
return check ( predicate ) # type: ignore
def has_role ( item : Union [ int , str ] , / ) - > Callable [ [ T ] , T ] :
def has_role ( item : Union [ int , str ] , / ) - > Check [ Any ] :
""" A :func:`.check` that is added that checks if the member invoking the
command has the role specified via the name or ID specified .
@ -2066,7 +2066,7 @@ def bot_has_any_role(*items: int) -> Callable[[T], T]:
return check ( predicate )
def has_permissions ( * * perms : bool ) - > Callable [ [ T ] , T ] :
def has_permissions ( * * perms : bool ) - > Check [ Any ] :
""" A :func:`.check` that is added that checks if the member has all of
the permissions necessary .
@ -2114,7 +2114,7 @@ def has_permissions(**perms: bool) -> Callable[[T], T]:
return check ( predicate )
def bot_has_permissions ( * * perms : bool ) - > Callable [ [ T ] , T ] :
def bot_has_permissions ( * * perms : bool ) - > Check [ Any ] :
""" Similar to :func:`.has_permissions` except checks if the bot itself has
the permissions listed .
@ -2141,7 +2141,7 @@ def bot_has_permissions(**perms: bool) -> Callable[[T], T]:
return check ( predicate )
def has_guild_permissions ( * * perms : bool ) - > Callable [ [ T ] , T ] :
def has_guild_permissions ( * * perms : bool ) - > Check [ Any ] :
""" Similar to :func:`.has_permissions`, but operates on guild wide
permissions instead of the current channel permissions .
@ -2170,7 +2170,7 @@ def has_guild_permissions(**perms: bool) -> Callable[[T], T]:
return check ( predicate )
def bot_has_guild_permissions ( * * perms : bool ) - > Callable [ [ T ] , T ] :
def bot_has_guild_permissions ( * * perms : bool ) - > Check [ Any ] :
""" Similar to :func:`.has_guild_permissions`, but checks the bot
members guild permissions .
@ -2196,7 +2196,7 @@ def bot_has_guild_permissions(**perms: bool) -> Callable[[T], T]:
return check ( predicate )
def dm_only ( ) - > Callable [ [ T ] , T ] :
def dm_only ( ) - > Check [ Any ] :
""" A :func:`.check` that indicates this command must only be used in a
DM context . Only private messages are allowed when
using the command .
@ -2215,7 +2215,7 @@ def dm_only() -> Callable[[T], T]:
return check ( predicate )
def guild_only ( ) - > Callable [ [ T ] , T ] :
def guild_only ( ) - > Check [ Any ] :
""" A :func:`.check` that indicates this command must only be used in a
guild context only . Basically , no private messages are allowed when
using the command .
@ -2232,7 +2232,7 @@ def guild_only() -> Callable[[T], T]:
return check ( predicate )
def is_owner ( ) - > Callable [ [ T ] , T ] :
def is_owner ( ) - > Check [ Any ] :
""" A :func:`.check` that checks if the person invoking this command is the
owner of the bot .
@ -2250,7 +2250,7 @@ def is_owner() -> Callable[[T], T]:
return check ( predicate )
def is_nsfw ( ) - > Callable [ [ T ] , T ] :
def is_nsfw ( ) - > Check [ Any ] :
""" A :func:`.check` that checks if the channel is a NSFW channel.
This check raises a special exception , : exc : ` . NSFWChannelRequired `