You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On page 149, in chapter 7, the first and second playbook presented are failing due to invalid Jinja syntax.
When trying to compare the my_color_choice with the string literal 'blue' (and '#0000ff' in the second playbook) you can't just write my_color_choice is 'blue'
You could either replace the "is" with "==" or write my_color_choice is eq 'blue' or my_color_choice is equalto 'blue'
Hope it helps !
The text was updated successfully, but these errors were encountered:
On page 149, in chapter 7, the first and second playbook presented are failing due to invalid Jinja syntax.
When trying to compare the my_color_choice with the string literal 'blue' (and '#0000ff' in the second playbook) you can't just write
my_color_choice is 'blue'
You could either replace the "is" with "==" or write
my_color_choice is eq 'blue'
ormy_color_choice is equalto 'blue'
Hope it helps !
The text was updated successfully, but these errors were encountered: