From 366f7247f26760929caf4aa1704e828d2e549689 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sun, 24 Jan 2021 22:54:58 +0100 Subject: [PATCH] code style --- owrx/dsp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/owrx/dsp.py b/owrx/dsp.py index b75220f..9b2a539 100644 --- a/owrx/dsp.py +++ b/owrx/dsp.py @@ -20,6 +20,7 @@ class ModulationValidator(OrValidator): """ This validator only allows alphanumeric characters and numbers, but no spaces or special characters """ + def __init__(self): super().__init__(BoolValidator(), RegexValidator(re.compile("^[a-z0-9]+$")))