From 79ae404e63bc271adb767f13f53f132fde0b208d Mon Sep 17 00:00:00 2001 From: Andrew Herrington Date: Fri, 7 Jan 2022 20:36:52 -0600 Subject: [PATCH] make timeout optional` --- src/healthchecks_io/schemas/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/healthchecks_io/schemas/checks.py b/src/healthchecks_io/schemas/checks.py index 9994575..c443849 100644 --- a/src/healthchecks_io/schemas/checks.py +++ b/src/healthchecks_io/schemas/checks.py @@ -38,7 +38,7 @@ class Check(BaseModel): update_url: Optional[str] pause_url: Optional[str] channels: Optional[str] - timeout: int + timeout: Optional[int] uuid: Optional[str] @validator("uuid", always=True)