Merge branch 'release-0.20' into develop

This commit is contained in:
Jakob Ketterl 2021-01-25 19:37:57 +01:00
commit bee0f67efd
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class NumberValidator(OrValidator):
class RegexValidator(StringValidator):
def __init__(self, regex: re.Pattern):
def __init__(self, regex):
self.regex = regex
super().__init__()