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
For example:
{ 'nodes': [ { 'id': 0, 'size': 1, 'color': 'rgba(189,8,242,0.7)', 'label': '/home/lighght/Yggdrasill/Hof/v8_clion/src/wasm/compilation-environment.h', 'group': 'src/wasm', 'x': 0.00318283616270964, 'y': 0.002160306621951876 } ] }
The problem of this format is that it doesn't yield proper json outcome, i.e. it can't be parsed by python json.load().
json.load()
An easy fix is to use json.dump() to write it.
json.dump()
python version: 3.9
The text was updated successfully, but these errors were encountered:
In fact the tool is great, and it helps me a lot. Thank you! I've forked the repo and am currently trying to fix it.
Sorry, something went wrong.
No branches or pull requests
For example:
The problem of this format is that it doesn't yield proper json outcome, i.e. it can't be parsed by python
json.load()
.An easy fix is to use
json.dump()
to write it.python version: 3.9
The text was updated successfully, but these errors were encountered: