Skip to content

Commit

Permalink
Merge branch 'feat/nullable-check-counts' into fix/local-checkfile
Browse files Browse the repository at this point in the history
  • Loading branch information
simojo committed Sep 22, 2023
2 parents e48cd77 + cd16005 commit 026e0dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chasten/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -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] = []
Expand Down

0 comments on commit 026e0dc

Please sign in to comment.