Compare commits

...

2 Commits

Author SHA1 Message Date
Andrew
17c612c29f Merge pull request #33 from andrewthetechie/fix-optional-timeout
make timeout optional
2022-01-07 20:40:45 -06:00
Andrew Herrington
79ae404e63 make timeout optional` 2022-01-07 20:36:52 -06:00

View File

@@ -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)