Skip to content

Commit

Permalink
run linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Kanzer authored and Aaron Kanzer committed Mar 14, 2024
1 parent f1e8ff7 commit a5ff126
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions dandischema/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ class IdentifierType(Enum):

class LicenseType(Enum):
"""An enumeration of supported licenses"""

# DANDI-specific -- supported within https://spdx.org/licenses/
CC0_10 = "spdx:CC0-1.0"
CC_BY_40 = "spdx:CC-BY-4.0"
Expand Down Expand Up @@ -1048,9 +1049,9 @@ class Activity(DandiBaseModel):

# isPartOf: Optional["Activity"] = Field(None, json_schema_extra={"nskey": "schema"})
# hasPart: Optional["Activity"] = Field(None, json_schema_extra={"nskey": "schema"})
wasAssociatedWith: Optional[List[Union[Person, Organization, Software, Agent]]] = (
Field(None, json_schema_extra={"nskey": "prov"})
)
wasAssociatedWith: Optional[
List[Union[Person, Organization, Software, Agent]]
] = Field(None, json_schema_extra={"nskey": "prov"})
used: Optional[List[Equipment]] = Field(
None,
description="A listing of equipment used for the activity.",
Expand Down

0 comments on commit a5ff126

Please sign in to comment.