(self)
| 252 | return self.matches[self.index] |
| 253 | |
| 254 | def __next__(self) -> str: |
| 255 | self.index = (self.index + 1) % len(self.matches) |
| 256 | return self.matches[self.index] |
| 257 | |
| 258 | def previous(self) -> str: |
| 259 | if self.index <= 0: |
nothing calls this directly
no outgoing calls
no test coverage detected