Merge pull request #235 from jancona/hpsdr_config

Set proper config options for HPSDR connector
This commit is contained in:
Jakob Ketterl
2021-05-12 21:13:37 +02:00
committed by GitHub
3 changed files with 36 additions and 2 deletions

View File

@@ -109,8 +109,8 @@ class TextInput(Input):
class NumberInput(Input):
def __init__(self, id, label, infotext=None, append="", converter: Converter = None):
super().__init__(id, label, infotext, converter=converter)
def __init__(self, id, label, infotext=None, append="", converter: Converter = None, validator: Validator = None):
super().__init__(id, label, infotext, converter=converter, validator=validator)
self.step = None
self.append = append