add node on nodes feature

This commit is contained in:
2022-03-31 13:42:25 -03:00
parent fd8b367d52
commit 2b9e754ff5
2 changed files with 6 additions and 1 deletions

View File

@ -290,7 +290,10 @@ class nodes:
self.nodelist = []
self.config = config
for n in nodes:
self.nodelist.append(node(n, **nodes[n], config = config))
this = node(n, **nodes[n], config = config)
self.nodelist.append(this)
setattr(self,n,this)
def splitlist(self, lst, n):
for i in range(0, len(lst), n):