(self, event=None)
| 13 | |
| 14 | @wraps(format_line) |
| 15 | def apply(self, event=None): |
| 16 | head, tail, chars, lines = self.formatter.get_region() |
| 17 | for pos in range(len(lines) - 1): |
| 18 | line = lines[pos] |
| 19 | lines[pos] = format_line(self, line) |
| 20 | self.formatter.set_region(head, tail, chars, lines) |
| 21 | return 'break' |
| 22 | |
| 23 | return apply |
| 24 |
nothing calls this directly
no test coverage detected
searching dependent graphs…