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
I came across this issue when attempting to render a cookiecutter template from a user config
where there was a space between a key and the colon.
While this is very trivial, it is hard to root cause because the error message is something like Error message: 'dict object' has no attribute 'python_3_6' and only careful examination of the dumped structure shows the problem
Version: 0.4.2
OS: OSX (but irrelevant)
I came across this issue when attempting to render a cookiecutter template from a user config
where there was a space between a key and the colon.
While this is very trivial, it is hard to root cause because the error message is something like
Error message: 'dict object' has no attribute 'python_3_6'
and only careful examination of the dumped structure shows the problemHow to reproduce
If you take this (valid) YAML example and parse it through poyo
you get (note the space after the python_3_6 key
whereas it should have been
{'python_3_6': 'yes'}
The text was updated successfully, but these errors were encountered: