From 0a421543e7e6d20db505a58e366076b5a63a8e76 Mon Sep 17 00:00:00 2001 From: Tobias Date: Mon, 20 May 2024 11:03:18 +0200 Subject: [PATCH] move fallbackdomain --- omada_respondd/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/omada_respondd/config.py b/omada_respondd/config.py index d13c1dc..2a921e6 100644 --- a/omada_respondd/config.py +++ b/omada_respondd/config.py @@ -41,11 +41,12 @@ class Config: unicast_address: str unicast_port: int interface: str + fallback_domain: str verbose: bool = False multicast_enabled: bool = True ssl_verify: bool = True - fallback_domain: str + @classmethod def from_dict(cls, cfg: Dict[str, str]) -> "Config":