Completed
Pull Request — master (#407)
by Edward
02:14
created

ConsulParseNodesAction.run()   A

Complexity

Conditions 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 4
rs 10
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