mirror of
https://github.com/andrewthetechie/py-healthchecks.io.git
synced 2026-05-01 19:25:55 +02:00
chore: package updates and fix ci
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
"""Schemas for healthchecks_io."""
|
||||
|
||||
from .badges import Badges
|
||||
from .checks import Check
|
||||
from .checks import CheckCreate
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
https://healthchecks.io/docs/api/
|
||||
"""
|
||||
|
||||
from typing import Dict
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
https://healthchecks.io/docs/api/
|
||||
"""
|
||||
|
||||
from datetime import datetime
|
||||
from pathlib import PurePath
|
||||
from typing import Any
|
||||
@@ -88,8 +89,7 @@ class CheckCreate(BaseModel):
|
||||
)
|
||||
tz: Optional[str] = Field(
|
||||
"UTC",
|
||||
description="Server's timezone. This setting only has an effect "
|
||||
"in combination with the schedule parameter.",
|
||||
description="Server's timezone. This setting only has an effect " "in combination with the schedule parameter.",
|
||||
)
|
||||
manual_resume: Optional[bool] = Field(
|
||||
False,
|
||||
@@ -184,8 +184,7 @@ class CheckUpdate(CheckCreate):
|
||||
)
|
||||
tz: Optional[str] = Field(
|
||||
None,
|
||||
description="Server's timezone. This setting only has an effect "
|
||||
"in combination with the schedule parameter.",
|
||||
description="Server's timezone. This setting only has an effect " "in combination with the schedule parameter.",
|
||||
)
|
||||
manual_resume: Optional[bool] = Field(
|
||||
None,
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
https://healthchecks.io/docs/api/
|
||||
"""
|
||||
|
||||
from typing import Dict
|
||||
|
||||
from pydantic import BaseModel
|
||||
|
||||
Reference in New Issue
Block a user