mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
don't check the type since older python doesn't have re.Pattern
This commit is contained in:
parent
b2e8fc5ad5
commit
f81cf3570a
|
|
@ -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__()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue