Skip to content

Commit

Permalink
correct typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoPascoli committed Sep 19, 2024
1 parent e03678a commit 2f17d71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions antarest/study/business/link_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ class LinkInfoDTOBase(BaseModel):
hurdles_cost: t.Optional[bool] = False
loop_flow: t.Optional[bool] = False
use_phase_shifter: t.Optional[bool] = False
transmission_capacities: t.Optional[TransmissionCapacity] = 'enabled'
asset_type: t.Optional[AssetType] = 'ac'
transmission_capacities: t.Optional[TransmissionCapacity] = "enabled"
asset_type: t.Optional[AssetType] = "ac"
display_comments: t.Optional[bool] = True
ui: t.Optional[LinkUIDTO] = None

Expand Down

0 comments on commit 2f17d71

Please sign in to comment.