Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
KDP-1528 fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
rosina-derks committed Oct 5, 2023
1 parent 1850ca0 commit 7f90925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/edr_pydantic_classes/observed_property.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Category(EDRBaseModel):


class ObservedProperty(EDRBaseModel):
id: str = None
id: Optional[str] = None
label: str
description: Optional[str] = None
categories: Optional[List[Category]] = None

0 comments on commit 7f90925

Please sign in to comment.