(self, e=None)
| 281 | return full_lines |
| 282 | |
| 283 | def update_highlight(self, e=None): |
| 284 | highlighted_code = self.apply_syntax_highlighting( |
| 285 | text=self.code_textfield_container.content.value, language=self.language |
| 286 | ) |
| 287 | self.code_highlight_container.content = highlighted_code |
| 288 | self.code_highlight_container.update() |
| 289 | |
| 290 | def build(self): |
| 291 | if self.read_only: |
nothing calls this directly
no test coverage detected