[commands] Add Cog.has_app_command_error_handler

This commit is contained in:
Julien Mauroy 2022-10-10 22:37:48 +02:00 committed by GitHub
parent 531795b23d
commit d0625154ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -519,6 +519,13 @@ class Cog(metaclass=CogMeta):
"""
return not hasattr(self.cog_command_error.__func__, '__cog_special_method__')
def has_app_command_error_handler(self) -> bool:
""":class:`bool`: Checks whether the cog has an app error handler.
.. versionadded:: 2.1
"""
return not hasattr(self.cog_app_command_error.__func__, '__cog_special_method__')
@_cog_special_method
async def cog_load(self) -> None:
"""|maybecoro|