MCPcopy Create free account
hub / github.com/astra-toolbox/astra-toolbox / get_plugin_object

Function get_plugin_object

python/astra/algorithm.py:69–77  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

67 return a.delete(ids)
68
69def 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
80def clear():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected