Remove the observer with connection id *cid*.
(self, cid)
| 1226 | return self._observers.connect('clicked', func) |
| 1227 | |
| 1228 | def disconnect(self, cid): |
| 1229 | """Remove the observer with connection id *cid*.""" |
| 1230 | self._observers.disconnect(cid) |
| 1231 | |
| 1232 | |
| 1233 | class CheckButtons(_Buttons): |
nothing calls this directly
no test coverage detected