Browse Source
[commands] Properly use Optional's default value on parsing error
pull/8463/head
Jakub Kuczys
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/ext/commands/core.py
|
|
@ -672,7 +672,7 @@ class Command(_BaseCommand, Generic[CogT, P, T]): |
|
|
|
except ArgumentParsingError as exc: |
|
|
|
if self._is_typing_optional(param.annotation): |
|
|
|
view.index = previous |
|
|
|
return None |
|
|
|
return None if param.required else await param.get_default(ctx) |
|
|
|
else: |
|
|
|
raise exc |
|
|
|
view.previous = previous |
|
|
|