| 11 | |
| 12 | |
| 13 | class RainbowHighlighter(Highlighter): |
| 14 | def highlight(self, text): |
| 15 | for index in range(len(text)): |
| 16 | text.stylize(f"color({randint(16, 255)})", index, index + 1) |
| 17 | |
| 18 | |
| 19 | rainbow = RainbowHighlighter() |
no outgoing calls
no test coverage detected
searching dependent graphs…