Skip to content

Commit

Permalink
Fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
islean committed Jan 21, 2025
1 parent 0928c91 commit c7d2f10
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class MicrosaltSample(Sample):
organism: str
priority: PriorityEnum
reference_genome: str = Field(max_length=255)
_verified_organism: str | None = PrivateAttr(default=None)
_verified_organism: bool | None = PrivateAttr(default=None)

def model_dump(self, **kwargs) -> dict:
data = super().model_dump(**kwargs)
Expand Down

0 comments on commit c7d2f10

Please sign in to comment.