(left: Criterion, right: Criterion)
| 173 | |
| 174 | |
| 175 | def _and(left: Criterion, right: Criterion) -> Criterion: |
| 176 | if left and not right: |
| 177 | return left |
| 178 | return left & right |
| 179 | |
| 180 | |
| 181 | def _or(left: Criterion, right: Criterion) -> Criterion: |
no outgoing calls
no test coverage detected
searching dependent graphs…