(v: Any)
| 624 | values = constraint.values |
| 625 | |
| 626 | def check_not_in(v: Any) -> bool: |
| 627 | return operator.__not__(operator.__contains__(values, v)) |
| 628 | |
| 629 | s = _check_func(check_not_in, f'not in {values}', s) |
| 630 | else: |
nothing calls this directly
no test coverage detected