Completed
Push — master ( 591bf0...c4b659 )
by Edward
01:58
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
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