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
Node has properties attribute. We can access the attributes using it, but can't set. It would be better if we can set like this:
n.properties['name'] = 'Neo'
The text was updated successfully, but these errors were encountered:
That's true. Actually I have a TODO line in the code for remembering me to do that, but it's not done yet.
By now, you can set the attributes using the regular syntax:
n['name'] = 'Neo'
Instead of
n.properties['name'] = 'Neo'
Node has properties attribute. We can access the attributes using it, but can't set. It would be better if we can set like this:
n.properties['name'] = 'Neo'
The text was updated successfully, but these errors were encountered: