Skip to content

Commit

Permalink
review adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianMorawiec committed Oct 8, 2024
1 parent da47368 commit cf7955e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ class Resources(BaseModel):
memory: Optional[str] = pydantic.Field(
pattern=r"^([+-]?[0-9.]+)([eEinumkKMGTP]*[-+]?[0-9]*)$"
)
gpu: Optional[str] = pydantic.Field(pattern="^[0-9.]+$")
gpu: Optional[str] = pydantic.Field(pattern=r"^\d+$")


class HeadNodeResources(BaseModel):
Expand Down

0 comments on commit cf7955e

Please sign in to comment.