mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-11 10:31:48 -05:00
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))
|