diff --git a/dandischema/models.py b/dandischema/models.py index 5eba967..06b256f 100644 --- a/dandischema/models.py +++ b/dandischema/models.py @@ -1183,8 +1183,12 @@ class Activity(DandiBaseModel): description="The description of the activity.", json_schema_extra={"nskey": "schema"}, ) - startDate: Optional[Union[datetime, date]] = Field(None, json_schema_extra={"nskey": "schema"}) - endDate: Optional[Union[datetime, date]] = Field(None, json_schema_extra={"nskey": "schema"}) + startDate: Optional[Union[datetime, date]] = Field( + None, json_schema_extra={"nskey": "schema"} + ) + endDate: Optional[Union[datetime, date]] = Field( + None, json_schema_extra={"nskey": "schema"} + ) # isPartOf: Optional["Activity"] = Field(None, json_schema_extra={"nskey": "schema"}) # hasPart: Optional["Activity"] = Field(None, json_schema_extra={"nskey": "schema"})