Skip to content

Commit 5d53a2a

Browse files
GioeleB00Copilot
andauthored
Update src/app/schemas/simulation_input.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 447070d commit 5d53a2a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/schemas/simulation_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def check_simulation_time(cls, v: object) -> int: # noqa: N805
5252
err_msg_type = "the simulation time must be an integer"
5353
raise ValueError(err_msg_type) # noqa: TRY004
5454
if v <= 60:
55-
err_msg_val = "the simulation must be at least 60seconds"
55+
err_msg_val = "the simulation must be at least 60 seconds"
5656
raise ValueError(err_msg_val)
5757
return v
5858

0 commit comments

Comments
 (0)