mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-08 10:53:10 +00:00
[commands] BadBooleanArgument -> BadBoolArgument
This commit is contained in:
@ -107,7 +107,7 @@ def _convert_to_bool(argument):
|
||||
elif lowered in ('no', 'n', 'false', 'f', '0', 'disable', 'off'):
|
||||
return False
|
||||
else:
|
||||
raise BadBooleanArgument(lowered)
|
||||
raise BadBoolArgument(lowered)
|
||||
|
||||
class _CaseInsensitiveDict(dict):
|
||||
def __contains__(self, k):
|
||||
|
@ -53,7 +53,7 @@ __all__ = (
|
||||
'BadInviteArgument',
|
||||
'EmojiNotFound',
|
||||
'PartialEmojiConversionFailure',
|
||||
'BadBooleanArgument',
|
||||
'BadBoolArgument',
|
||||
'MissingRole',
|
||||
'BotMissingRole',
|
||||
'MissingAnyRole',
|
||||
@ -373,7 +373,7 @@ class PartialEmojiConversionFailure(BadArgument):
|
||||
self.argument = argument
|
||||
super().__init__('Couldn\'t convert "{}" to PartialEmoji.'.format(argument))
|
||||
|
||||
class BadBooleanArgument(BadArgument):
|
||||
class BadBoolArgument(BadArgument):
|
||||
"""Exception raised when a boolean argument was not convertable.
|
||||
|
||||
This inherits from :exc:`BadArgument`
|
||||
|
Reference in New Issue
Block a user