We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e12f92 commit da163d3Copy full SHA for da163d3
1 file changed
tests/test_misc.py
@@ -28,6 +28,16 @@ class ScriptModule:
28
"""Mock for the org.scijava.script.ScriptModule class."""
29
30
def __init__(self, input_names, inputs):
31
+ """ScriptModule constructor.
32
+
33
+ Parameters
34
+ ----------
35
+ input_names : list(str)
36
+ The list of input names. FIXME: explain better.
37
+ inputs :dict
38
+ A dict having the `input_names` as keys. Values are representing the
39
+ content of the respective script parameter.
40
+ """
41
self.info = ScriptInfo(input_names)
42
self.inputs = inputs
43
0 commit comments