[commands] BadBooleanArgument -> BadBoolArgument

This commit is contained in:
Rapptz
2020-09-04 08:47:07 -04:00
parent 6ebd2e13a1
commit 0a7e2f7c2f
3 changed files with 5 additions and 5 deletions

View File

@ -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`