mirror of
https://github.com/ansible/awx.git
synced 2026-06-21 06:37:45 -02:30
10 lines
191 B
Python
10 lines
191 B
Python
import yaml
|
|
|
|
from awxkit.utils import PseudoNamespace
|
|
|
|
|
|
class HasVariables(object):
|
|
@property
|
|
def variables(self):
|
|
return PseudoNamespace(yaml.safe_load(self.json.variables))
|