Completed
Pull Request — master (#407)
by Edward
02:52 queued 57s
created

ConsulParseNodesAction   A

Complexity

Total Complexity 1

Size/Duplication

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 4 1
1
from lib import action
2
3
4
class ConsulParseNodesAction(action.ConsulBaseAction):
5
    def run(self, data):
6
        nodes = []
7
        # Loop through the keys, and return the needful
8
        return nodes
9