(v: Any)
| 617 | values = constraint.values |
| 618 | |
| 619 | def check_in(v: Any) -> bool: |
| 620 | return operator.__contains__(values, v) |
| 621 | |
| 622 | s = _check_func(check_in, f'in {values}', s) |
| 623 | elif isinstance(constraint, _NotIn): |
nothing calls this directly
no test coverage detected