Skip to content

Commit

Permalink
Make MyPy Ignore Conlist Type Hint
Browse files Browse the repository at this point in the history
  • Loading branch information
bencap committed Sep 17, 2024
1 parent 094d00b commit a8917ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mavedb/view_models/score_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class ScoreRange(BaseModel):

class ScoreRanges(BaseModel):
wt_score: float
ranges: conlist(ScoreRange, min_items=1)
ranges: conlist(ScoreRange, min_items=1) # type: ignore


class ScoreSetGetter(PublicationIdentifiersGetter):
Expand Down

0 comments on commit a8917ec

Please sign in to comment.