Skip to content

Commit

Permalink
fix: remove optional typing in models
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoPascoli committed Sep 30, 2024
1 parent 3a6a7c8 commit fcace50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class LinkInfoProperties(BaseModel):
loop_flow: bool = False
use_phase_shifter: bool = False
transmission_capacities: TransmissionCapacity = TransmissionCapacity.ENABLED
asset_type: AssetType= AssetType.AC
asset_type: AssetType = AssetType.AC
display_comments: bool = True
colorr: int = Field(default=DEFAULT_COLOR, gt=0, lt=255)
colorb: int = Field(default=DEFAULT_COLOR, gt=0, lt=255)
Expand Down

0 comments on commit fcace50

Please sign in to comment.