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
Traceback (most recent call last):
File "local_graph.py", line 202, in
g.import_data(data)
File "local_graph.py", line 50, in import_data
for n in self.G.nodes():
RuntimeError: dictionary changed size during iteration
修改成list包装后,报错:
Traceback (most recent call last):
File "local_graph.py", line 202, in
g.import_data(data)
File "local_graph.py", line 57, in import_data
self.max_degree_value = max(self.degree.values())
AttributeError: 'DegreeView' object has no attribute 'values'
The text was updated successfully, but these errors were encountered:
Traceback (most recent call last):
File "local_graph.py", line 202, in
g.import_data(data)
File "local_graph.py", line 50, in import_data
for n in self.G.nodes():
RuntimeError: dictionary changed size during iteration
修改成list包装后,报错:
Traceback (most recent call last):
File "local_graph.py", line 202, in
g.import_data(data)
File "local_graph.py", line 57, in import_data
self.max_degree_value = max(self.degree.values())
AttributeError: 'DegreeView' object has no attribute 'values'
The text was updated successfully, but these errors were encountered: