Browse Source

[commands] Properly handle typing.Optional as last positional parameter

pull/1978/head
Harmon 6 years ago
parent
commit
0513ea1f53
  1. 2
      discord/ext/commands/core.py

2
discord/ext/commands/core.py

@ -413,6 +413,8 @@ class Command(_BaseCommand):
if param.kind == param.VAR_POSITIONAL:
raise RuntimeError() # break the loop
if required:
if self._is_typing_optional(param.annotation):
return None
raise MissingRequiredArgument(param)
return param.default

Loading…
Cancel
Save