Return the Python object instance of a plugin algorithm. :param i: ID of object corresponding to a plugin algorithm. :type i: :class:`int` :returns: The Python object instance of the plugin algorithm.
(i)
| 67 | return a.delete(ids) |
| 68 | |
| 69 | def get_plugin_object(i): |
| 70 | """Return the Python object instance of a plugin algorithm. |
| 71 | |
| 72 | :param i: ID of object corresponding to a plugin algorithm. |
| 73 | :type i: :class:`int` |
| 74 | :returns: The Python object instance of the plugin algorithm. |
| 75 | |
| 76 | """ |
| 77 | return a.get_plugin_object(i) |
| 78 | |
| 79 | |
| 80 | def clear(): |
nothing calls this directly
no outgoing calls
no test coverage detected