Merge pull request #33 from andrewthetechie/fix-optional-timeout

make timeout optional
This commit is contained in:
Andrew
2022-01-07 20:40:45 -06:00
committed by GitHub

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)