Skip to content

Commit

Permalink
make the discharge attribute not optional
Browse files Browse the repository at this point in the history
  • Loading branch information
MAfarrag committed Dec 23, 2024
1 parent 966f8d0 commit 6b530a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hydrolib/core/dflowfm/ext/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class SourceSink(INIBasedModel):

zsource: Optional[Union[float, List[float]]] = Field(alias="zSource")
zsink: Optional[Union[float, List[float]]] = Field(alias="zSink")
discharge: Optional[Union[float, List[float]]] = Field(alias="discharge")
discharge: Union[float, List[float]] = Field(alias="discharge")
area: Optional[float] = Field(alias="Area")

salinitydelta: Optional[Union[List[float], float]] = Field(alias="SalinityDelta")
Expand Down

0 comments on commit 6b530a5

Please sign in to comment.