diff --git a/chasten/results.py b/chasten/results.py index 6a005e75..78331fbe 100644 --- a/chasten/results.py +++ b/chasten/results.py @@ -68,8 +68,8 @@ class Check(BaseModel): id: str name: str description: str = "" - min: Optional[conint(ge=0)] = 0 - max: Optional[conint(ge=0)] = 0 + min: Optional[conint(ge=0)] = 0 # type: ignore + max: Optional[conint(ge=0)] = 0 # type: ignore pattern: str passed: bool matches: list[Match] = []