summaryrefslogtreecommitdiffstats
path: root/store.py
diff options
context:
space:
mode:
authorStefan Hansson <steha708@edu.liu.se>2020-12-16 09:26:50 +0100
committerNewbyte <steha708@liu.se>2020-12-16 09:26:50 +0100
commit3af5a89bdefc20ffdc4b66a5ae2a62a8cbabe36c (patch)
tree314edce5140a669409e54cddda61c50b0d3b065f /store.py
parent1354c8317945ace08145128f03a26ee4e02ddd9e (diff)
downloadtdde25-3af5a89bdefc20ffdc4b66a5ae2a62a8cbabe36c.tar.gz
More redundant changes removed
Diffstat (limited to 'store.py')
-rw-r--r--store.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/store.py b/store.py
index 34c0f0b..2930e19 100644
--- a/store.py
+++ b/store.py
@@ -128,7 +128,6 @@ def make_forest(nodes):
# becomes the root of each node since it will be the same for all nodes
# in the same tree due our use of union-find.
forest = defaultdict(dict)
-
for node_id, node in nodes.items():
forest[node.find_root().id][node_id] = node