(self, widget: tk.Text, content: str)
| 1230 | return text |
| 1231 | |
| 1232 | def _render_text(self, widget: tk.Text, content: str) -> None: |
| 1233 | widget.configure(state="normal") |
| 1234 | widget.delete("1.0", "end") |
| 1235 | widget.insert("1.0", content) |
| 1236 | widget.configure(state="disabled") |
| 1237 | |
| 1238 | def _on_approval_selected(self, _event: Any = None) -> None: |
| 1239 | selection = self.approval_listbox.curselection() |
no outgoing calls
no test coverage detected