Completed
Pull Request — master (#460)
by Manas
02:18
created

HellowVsphere.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 pyVmomi import vim
2
3
from vmwarelib import inventory
4
from vmwarelib.actions import BaseAction
5
6
7
class HellowVsphere(BaseAction):
8
9
    def run(self):
10
        return self.si_content.about.instanceUuid
11