Test Failed
Pull Request — master (#797)
by
unknown
03:47
created

PluginTemplate6Tools.define_parameters()   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
from savu.plugins.plugin_tools import PluginTools
2
3
class PluginTemplate6Tools(PluginTools):
4
    """
5
    A plugin template that dynamically determines the number of output
6
    datasets based on a parameter.
7
    """
8
9
    def define_parameters(self):
10
        """
11
        n_out:
12
            visibility: basic
13
            dtype: int
14
            description: Add this number of output datasets
15
            default: 1
16
        out_prefix:
17
            visibility: basic
18
            dtype: [None, str]
19
            description: What should the datasets be called
20
            default: None
21
        """