Completed
Pull Request — master (#407)
by Edward
02:14
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
class ConsulParseNodesAction(action.ConsulBaseAction):
4
    def run(self, data):
5
        nodes = []
6
        # Loop through the keys, and return the needful
7
        return nodes
8