mgear-dev / mgear4

mGear v.4.x.x (python 3 ready) https://mgear4.readthedocs.io
MIT License
259 stars 91 forks source link

Guide Data embedded in the rig node has a bug #280

Closed joji2468ng closed 9 months ago

joji2468ng commented 9 months ago

It seems that I couldn't retrieve guide data embedded in the rig node due to a syntax error in the dictionary in the latest version 4.1.0.

At least, what I found are boolean values. Please make sure to use True instead of true and False instead of false. They need to be capitalized. null is not a valid keyword. The correct keyword for a null value might be None in this case.

Thanks,

image

miquelcampos commented 9 months ago

@joji2468ng it is not a bug. Please use json.loads to decode the data 😉

joji2468ng commented 9 months ago

Oh, sorry. I will try to use json.loads! Thank you!