Hi Dave, thanks for making this project, I think it's super valuable!
This fix will allow the node function to be used in the demo notebooks as is.
159
I considered a few alternatives, open to any of these or other solutions if you prefer. I prefer separate explicit namespacing / imports rather than one global one but I am trying to adhere to the project's existing import pattern. There may also be a better way to do this.
No change to the init files, node needs to be namespaced with tools.spice.node.
Only the change to skidl/tools/init.py, node needs to be namespaced with spice.node.
Only the change to skidl/tools/spice/init.py, node needs to be namespaced with tools.node.
All namespacing here can be replaced by explicitly importing the appropriately namespaced node.
Hi Dave, thanks for making this project, I think it's super valuable!
This fix will allow the
node
function to be used in the demo notebooks as is.159
I considered a few alternatives, open to any of these or other solutions if you prefer. I prefer separate explicit namespacing / imports rather than one global one but I am trying to adhere to the project's existing import pattern. There may also be a better way to do this.
node
needs to be namespaced withtools.spice.node
.node
needs to be namespaced withspice.node
.node
needs to be namespaced withtools.node
.All namespacing here can be replaced by explicitly importing the appropriately namespaced node.