Completed
Pull Request — master (#412)
by Edward
01:52
created

LibratoGetMetric   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 3
Duplicated Lines 0 %
Metric Value
dl 0
loc 3
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 2 1
1
from lib import action
2
3
class LibratoGetMetric(action.LibratoBaseAction):
4
    def run(self, name, count=1, resolution=1):
5
        self.librato.get(name, count, resolution)
6