Skip to content

Commit 83138ca

Browse files
committed
Fix field docs
1 parent cb60a6d commit 83138ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/dstack/_internal/core/models/fleets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def validate_network(cls, value):
143143

144144
class FleetNodesSpec(CoreModel):
145145
min: Annotated[
146-
int, Field(description=("The minimum number of instances to maintain in the fleet."))
146+
int, Field(description=("The minimum number of instances to maintain in the fleet"))
147147
]
148148
target: Annotated[
149149
int,
@@ -154,7 +154,7 @@ class FleetNodesSpec(CoreModel):
154154
),
155155
]
156156
max: Annotated[
157-
Optional[int], Field(description=("The maximum number of instances allowed in the fleet."))
157+
Optional[int], Field(description=("The maximum number of instances allowed in the fleet"))
158158
] = None
159159

160160
@root_validator(pre=True)

0 commit comments

Comments
 (0)