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
The Parser class in the library ddi.py creates a dictionary of dictionaries:
Parser
ddi.py
result.json
{ "variable": { "name": "variable" } }
Do not keep this behavior. Instead create a list of dictionaries, looking like this:
[ { "name": "variable" } ]
The text was updated successfully, but these errors were encountered:
This format is also required by the functional test case using the dataset JSON schema.
Sorry, something went wrong.
add scripts
fb4c400
mpahl
No branches or pull requests
The
Parser
class in the libraryddi.py
creates a dictionary of dictionaries:result.json
Do not keep this behavior. Instead create a list of dictionaries, looking like this:
result.json
The text was updated successfully, but these errors were encountered: