From 0513ea1f5350e016f10de4c1aaa8bc7c27cc3865 Mon Sep 17 00:00:00 2001 From: Harmon Date: Wed, 13 Mar 2019 10:05:08 -0500 Subject: [PATCH] [commands] Properly handle typing.Optional as last positional parameter --- discord/ext/commands/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 85bb1b9f1..72f25a694 100644 --- a/discord/ext/commands/core.py +++ b/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