Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 23, 2024
1 parent 7029eeb commit 40d8fb5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dandischema/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"})
Expand Down

0 comments on commit 40d8fb5

Please sign in to comment.