Remove the callback function with connection id *cid*.
(self, cid)
| 297 | return self._observers.connect('clicked', lambda event: func(event)) |
| 298 | |
| 299 | def disconnect(self, cid): |
| 300 | """Remove the callback function with connection id *cid*.""" |
| 301 | self._observers.disconnect(cid) |
| 302 | |
| 303 | |
| 304 | class SliderBase(AxesWidget): |
no outgoing calls
no test coverage detected