🐛 fix matcher group args parser

This commit is contained in:
yanyongyu 2020-10-20 00:01:26 +08:00
parent c3ed962837
commit 308824d0b1

View File

@ -496,6 +496,7 @@ class MatcherGroup:
return matcher
def args_parser(self, func: ArgsParser) -> ArgsParser:
self._default_parser = func
for matcher in self.matchers:
matcher.args_parser(func)
return func