Skip to content

Commit 889cac0

Browse files
committed
Move gt down
1 parent 1a5d53f commit 889cac0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rompy/swan/subcomponents/physics.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -338,12 +338,13 @@ class ST6(SourceTerms):
338338
default=32.0,
339339
description="Factor to scale U10 with U* when using U10PROXY",
340340
)
341-
cdfac: Optional[Annotated[float, Field(gt=0.0)]] = Field(
341+
cdfac: Optional[float] = Field(
342342
default=None,
343343
description=(
344344
"Counter bias in the input wind fields by providing a multiplier "
345345
"on the drag coefficient"
346346
),
347+
gt=0.0,
347348
)
348349

349350
@model_validator(mode="after")

0 commit comments

Comments
 (0)