Yield all 'value' targets, without priority
(self, key)
| 62 | yield el[1] |
| 63 | |
| 64 | def flat_matches(self, key): |
| 65 | """ Yield all 'value' targets, without priority """ |
| 66 | for val in self.dispatch(key): |
| 67 | for el in val: |
| 68 | yield el[1] # only value, no priority |
| 69 | return |
no test coverage detected