Remove the observer with connection id *cid*. Parameters ---------- cid : int Connection id of the observer to be removed.
(self, cid)
| 363 | return val |
| 364 | |
| 365 | def disconnect(self, cid): |
| 366 | """ |
| 367 | Remove the observer with connection id *cid*. |
| 368 | |
| 369 | Parameters |
| 370 | ---------- |
| 371 | cid : int |
| 372 | Connection id of the observer to be removed. |
| 373 | """ |
| 374 | self._observers.disconnect(cid) |
| 375 | |
| 376 | def reset(self): |
| 377 | """Reset the slider to the initial value.""" |
nothing calls this directly
no test coverage detected