mirror of
https://github.com/ansible/awx.git
synced 2026-02-13 17:24:45 -03:30
11 lines
192 B
Python
11 lines
192 B
Python
import yaml
|
|
|
|
from awxkit.utils import PseudoNamespace
|
|
|
|
|
|
class HasVariables(object):
|
|
|
|
@property
|
|
def variables(self):
|
|
return PseudoNamespace(yaml.safe_load(self.json.variables))
|