Completed
Push — master ( d1f0a7...3b2ece )
by Edward
21:04 queued 05:38
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 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 2 1
1
from st2actions.runners.pythonrunner import Action
2
3
4
class MyAction(Action):
5
    def run(self):
6
        pass
7