Clears all the nodes in the tree.
(self)
| 180 | messagebox.showerror("Error", f"An error occurred: {str(e)}") |
| 181 | |
| 182 | def clear_all(self): |
| 183 | """Clears all the nodes in the tree.""" |
| 184 | for item in self.tree.get_children(): |
| 185 | self.tree.delete(item) |
| 186 | |
| 187 | def on_right_click(self, event): |
| 188 | try: |
no outgoing calls
no test coverage detected