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
This is difficult to fix with the current implementation.
A possible solution would be to "pre-parse" the YAML files and split into two files (or streams) before actual YAML parsing. One with actual value and one with template values.
Side note: The YAML parser evaluates "ON" to True, not to the string "ON"
This cannot be parsed:
as it gives a
yaml.parser.ParserError: while parsing a block mapping
This works fine:
and is probably the canonical way to do it, but yaml will let this pass with no problems:
which can create confusion.
The text was updated successfully, but these errors were encountered: