(self, widget, text)
| 67 | self.create_tooltip(clear_button, "Clear all") |
| 68 | |
| 69 | def create_tooltip(self, widget, text): |
| 70 | tooltip = ToolTip(widget, text) |
| 71 | widget.bind("<Enter>", lambda _: tooltip.show_tip()) |
| 72 | widget.bind("<Leave>", lambda _: tooltip.hide_tip()) |
| 73 | |
| 74 | def insert_json(self, parent, json_dict): |
| 75 | for key, value in json_dict.items(): |
no test coverage detected