Passed
Push — master ( 9f382f...4cae1d )
by
unknown
04:16
created

PrintParametersAction.run()   A

Complexity

Conditions 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 4
rs 10
1
from pprint import pprint
2
3
from st2common.runners.base_action import Action
4
5
6
class PrintParametersAction(Action):
7
    def run(self, **parameters):
8
        print('=========')
9
        pprint(parameters)
10
        print('=========')
11