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