Do nothing, and raise a warning. Any locator class not supporting the set_params() function will call this.
(self, **kwargs)
| 1747 | raise NotImplementedError('Derived must override') |
| 1748 | |
| 1749 | def set_params(self, **kwargs): |
| 1750 | """ |
| 1751 | Do nothing, and raise a warning. Any locator class not supporting the |
| 1752 | set_params() function will call this. |
| 1753 | """ |
| 1754 | _api.warn_external( |
| 1755 | "'set_params()' not defined for locator of type " + |
| 1756 | str(type(self))) |
| 1757 | |
| 1758 | def __call__(self): |
| 1759 | """Return the locations of the ticks.""" |
no outgoing calls