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

SkipMessageAction.run()   A

Complexity

Conditions 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 5
rs 9.4286
cc 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