We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Edit: I just saw you're TODO. Sorry about that. I'm going to leave this here because it is indeed a bug.
some: user: - username
Given the above example, YAMLish parses the above as:
some => {user => [username]}
Python's YAML module parses it as:
'some': None, 'user': ['username']
Given the indenting here, I suspect the YAMLish parser has gotten this wrong. In fact, the specification says it's wrong:
https://yaml.org/spec/1.2.2/#22-structures
Section: 2.21 Example
The text was updated successfully, but these errors were encountered:
And:
bla: ble:
Is not parsed:
Sorry, something went wrong.
No branches or pull requests
Edit: I just saw you're TODO. Sorry about that. I'm going to leave this here because it is indeed a bug.
Given the above example, YAMLish parses the above as:
some => {user => [username]}
Python's YAML module parses it as:
'some': None, 'user': ['username']
Given the indenting here, I suspect the YAMLish parser has gotten this wrong.
In fact, the specification says it's wrong:
https://yaml.org/spec/1.2.2/#22-structures
Section: 2.21 Example
The text was updated successfully, but these errors were encountered: