| 188 | MetroWidget.__init__(self, tk.Radiobutton, master, ID, kwargs) |
| 189 | |
| 190 | class Checkbutton(tk.Checkbutton, MetroWidget): |
| 191 | def __init__(self, master, ID=None, **kwargs): |
| 192 | MetroWidget.__init__(self, tk.Checkbutton, master, ID, kwargs) |
| 193 | |
| 194 | |
| 195 | class Metro_ButtonLabel(Label): |
no outgoing calls
no test coverage detected