Completed
Pull Request — master (#633)
by
unknown
02:19
created

InfoAction.run()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
c 0
b 0
f 0
dl 0
loc 2
rs 10
1
from lib.sensu import SensuAction
2
3
__all__ = [
4
    'InfoAction'
5
]
6
7
8
class InfoAction(SensuAction):
9
    def run(self):
10
        return self.api.get_info()
11