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 was trying to use the dotGraph type with python, unfortunately it seems like the JSON parser is unable to parse it.
Code to replicate, text is taken from your playground example:
I think this is caused by the fact that the JSON it is trying to parse seems to be double escaped, for example I would expect it to be escaped like this: label = \"process #1\", this is also what happens if I print the string, but instead the string it is trying to parse contains label = \\"process #1\\", which causes the " to not be escaped and I think that is what is causing parsing to fail.
The text was updated successfully, but these errors were encountered:
Hi,
I was trying to use the dotGraph type with python, unfortunately it seems like the JSON parser is unable to parse it.
Code to replicate, text is taken from your playground example:
This fails to parse with the following error:
I think this is caused by the fact that the JSON it is trying to parse seems to be double escaped, for example I would expect it to be escaped like this:
label = \"process #1\"
, this is also what happens if I print the string, but instead the string it is trying to parse containslabel = \\"process #1\\"
, which causes the " to not be escaped and I think that is what is causing parsing to fail.The text was updated successfully, but these errors were encountered: