Remove the observer with connection id *cid*.
(self, cid)
| 1750 | return self._observers.connect('submit', lambda text: func(text)) |
| 1751 | |
| 1752 | def disconnect(self, cid): |
| 1753 | """Remove the observer with connection id *cid*.""" |
| 1754 | self._observers.disconnect(cid) |
| 1755 | |
| 1756 | |
| 1757 | class RadioButtons(_Buttons): |
nothing calls this directly
no test coverage detected