Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Jul 19, 2024
1 parent 3599595 commit 100fdf5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frigate/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ class AuthConfig(FrigateBaseModel):

class NotificationConfig(FrigateBaseModel):
enabled: bool = Field(default=False, title="Enable notifications")
base_url: Optional[str] = Field(default=None, title="Base url for notification link and image.")
base_url: Optional[str] = Field(
default=None, title="Base url for notification link and image."
)


class StatsConfig(FrigateBaseModel):
Expand Down Expand Up @@ -1366,7 +1368,9 @@ class FrigateConfig(FrigateBaseModel):
default_factory=dict, title="Frigate environment variables."
)
ui: UIConfig = Field(default_factory=UIConfig, title="UI configuration.")
notifications: NotificationConfig = Field(default_factory=NotificationConfig, title="Notification Config")
notifications: NotificationConfig = Field(
default_factory=NotificationConfig, title="Notification Config"
)
telemetry: TelemetryConfig = Field(
default_factory=TelemetryConfig, title="Telemetry configuration."
)
Expand Down

0 comments on commit 100fdf5

Please sign in to comment.