I'm essentially trying to achieve the following within my yaml file
Classroom:
year: &year 5
subject: &subject Math
classroom_name: classroom_*year_*subject
What I expect
'Classroom': {
'year': 5
'subject': 'Math'
'classroom_name': 'classroom_5_Math'
}
when I load it in (via Python but I don't think that changes anything?).
What I'm getting
'Classroom': {
'year': 5
'subject': 'Math'
'classroom_name': 'classroom_*year_*subject'
}
What am I doing wrong / how can I improve this?