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 )