Completed
Pull Request — master (#2240)
by Edward
05:20
created

SkipMessageAction   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %
Metric Value
wmc 1
dl 0
loc 6
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 5 1
1
from st2actions.runners.pythonrunner import Action
2
3
__all__ = [
4
    'SkipMessageAction'
5
]
6
7
8
class SkipMessageAction(Action):
9
    def run(self):
10
        # That's a placeholder for format_result failure
11
        # to avoid failing action chain on aliases with 
12
        # disabled output.
13
        return 
14