From b37bb8edc71d4c384364df913a9ad3dbe9debba8 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 23 Sep 2024 17:26:23 -0600 Subject: [PATCH] Formatting --- frigate/api/defs/events_body.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frigate/api/defs/events_body.py b/frigate/api/defs/events_body.py index 8bdbc7dda..ea5cd8c0d 100644 --- a/frigate/api/defs/events_body.py +++ b/frigate/api/defs/events_body.py @@ -5,9 +5,7 @@ from pydantic import BaseModel, Field class EventsSubLabelBody(BaseModel): - subLabel: str = Field( - title="Sub label", max_length=100 - ) + subLabel: str = Field(title="Sub label", max_length=100) subLabelScore: Optional[float] = Field( title="Score for sub label", default=None, gt=0.0, le=1.0 )