Skip to content

Commit

Permalink
Make type and value required again on the Symbol type
Browse files Browse the repository at this point in the history
  • Loading branch information
Roconda committed Nov 4, 2024
1 parent 2edc7f5 commit d4b689f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/edr_pydantic/unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@


class Symbol(EdrBaseModel, extra="allow"):
value: str
type: str
title: Optional[str] = None
description: Optional[str] = None
value: Optional[str] = None
type: Optional[str] = None


class Unit(EdrBaseModel):
Expand Down

0 comments on commit d4b689f

Please sign in to comment.