for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
from lib import actions
from time import sleep
__all__ = [
'GetIPV6AddressAction',
]
class GetIPV6AddressAction(actions.BaseAction):
def run(self, region, id):
id
It is generally discouraged to redefine built-ins as this makes code very hard to read.
driver = self._get_compute_driver(region)
node = driver.ex_get_node_by_id(id)
return node.extra['ipv6']