Completed
Push — master ( f7c3f8...59d572 )
by Edward
04:38 queued 02:04
created

LibratoGetMetric.run()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 2
rs 10
1
from lib import action
2
3
4
class LibratoGetMetric(action.LibratoBaseAction):
5
    def run(self, name, count=1, resolution=1):
6
        self.librato.get(name, count=count, resolution=resolution)
7