in asfyaml/asfyaml.py [0:0]
def __init__(self, parent: ASFYamlInstance, yaml: strictyaml.YAML):
#: dict: The YAML configuration for this feature, in raw format.
self.yaml_raw = yaml.data
#: easydict.EasyDict: The YAML, but in `EasyDict` format.
self.yaml = easydict.EasyDict(yaml.data)
#: ASFYamlInstance: This is the parent .asf.yaml instance class. Useful for accessing other features and their data.
self.instance = parent
#: repository.Repository: The repository we're working on, and its push info.
self.repository = parent.repository
#: repository.Committer: The committer (userid+email) that pushed this commit.
self.committer = parent.committer