(self, group)
| 133 | print("Example 9") |
| 134 | class Sorter: |
| 135 | def __init__(self, group): |
| 136 | self.group = group |
| 137 | self.found = False |
| 138 | |
| 139 | def __call__(self, x): |
| 140 | if x in self.group: |
nothing calls this directly
no outgoing calls
no test coverage detected