From b189d694e71bbb4afa56b0c3ded0b873d35636d5 Mon Sep 17 00:00:00 2001 From: scyto Date: Mon, 18 Aug 2025 22:01:12 +0000 Subject: [PATCH] added new line at end of one file that failed --- frigate/config/network.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frigate/config/network.py b/frigate/config/network.py index c190517c7..c8b3cfd1c 100644 --- a/frigate/config/network.py +++ b/frigate/config/network.py @@ -4,8 +4,10 @@ from .base import FrigateBaseModel __all__ = ["IPv6Config", "NetworkingConfig"] + class IPv6Config(FrigateBaseModel): 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 + ipv6: IPv6Config = Field(default_factory=IPv6Config, title="Network configuration")