Completed
Pull Request — master (#2304)
by Arma
07:07
created

st2tests.fixtures.dummy_pack_1.actions.MyAction   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 3
Duplicated Lines 0 %
Metric Value
wmc 1
dl 0
loc 3
rs 10
1
from st2actions.runners.pythonrunner import Action
2
3
4
class MyAction(Action):
5
    def run(self):
6
        pass
7