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

plugin_examples.plugin_templates.general.plugin_template4_tools   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A PluginTemplate4Tools.define_parameters() 0 2 1
1
from savu.plugins.plugin_tools import PluginTools
2
3
class PluginTemplate4Tools(PluginTools):
4
    """
5
    A template for a plugin that takes in two datasets and returns one dataset,
6
    e.g. absorption correction.
7
    """
8
9
    def define_parameters(self):
10
        """
11
        example:
12
            visibility: basic
13
            dtype: [None, str]
14
            description: Example of a plugin parameter
15
            default: None
16
        in_datasets:
17
            visibility: datasets
18
            dtype: [list[str],list[]]
19
            description: Override the in_datasets parameter
20
            default: ['fluo', 'stxm']
21
        preview:
22
            visibility: basic
23
            dtype: preview
24
            description: Reduce the number of sinograms of stxm to match fluo
25
            default: []
26
        out_datasets:
27
            visibility: datasets
28
            dtype: [list[str],list[]]
29
            description: Override the out_datasets parameter
30
            default: ['fluo']
31
32
        """