From 6fef04b9831e335f8010134718e61376e4771677 Mon Sep 17 00:00:00 2001 From: scyto Date: Mon, 18 Aug 2025 12:45:52 -0700 Subject: [PATCH] fixed class sequencing in network.py --- frigate/config/network.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frigate/config/network.py b/frigate/config/network.py index bf81930f1..c190517c7 100644 --- a/frigate/config/network.py +++ b/frigate/config/network.py @@ -4,8 +4,8 @@ from .base import FrigateBaseModel __all__ = ["IPv6Config", "NetworkingConfig"] -class NetworkingConfig(FrigateBaseModel): - ipv6: IPv6Config = Field(default_factory=IPv6Config, title="IPv6 configuration") - class IPv6Config(FrigateBaseModel): - enabled: bool = Field(default=False, title="Enable IPv6 for port 5000 and/or 8971") \ No newline at end of file + enabled: bool = Field(default=False, title="Enable IPv6 for port 5000 and/or 8971") + +class NetworkingConfig(FrigateBaseModel): + ipv6: IPv6Config = Field(default_factory=IPv6Config, title="Network configuration") \ No newline at end of file