Remove extra field definition

This commit is contained in:
Nicolas Mowen 2024-12-06 18:56:43 -07:00 committed by GitHub
parent ecfa060877
commit 4eb23c241b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ class EventResponse(BaseModel):
model_type: Optional[str]
data: dict[str, Any]
model_config = ConfigDict(extra="forbid", protected_namespaces=())
model_config = ConfigDict(protected_namespaces=())
class EventCreateResponse(BaseModel):