aboutsummaryrefslogtreecommitdiff
path: root/backend/data
diff options
context:
space:
mode:
Diffstat (limited to 'backend/data')
-rwxr-xr-xbackend/data/genOtolData.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/backend/data/genOtolData.py b/backend/data/genOtolData.py
index 36b6197..b5e0055 100755
--- a/backend/data/genOtolData.py
+++ b/backend/data/genOtolData.py
@@ -231,9 +231,6 @@ for (id, node) in nodeMap.items():
supportQty = len(nodeAnns["supported_by"]) if "supported_by" in nodeAnns else 0
conflictQty = len(nodeAnns["conflicts_with"]) if "conflicts_with" in nodeAnns else 0
node.pSupport = supportQty > 0 and conflictQty == 0
- # Root node gets support
- if node.parentId == None:
- node.pSupport = True
print("Creating nodes and edges tables")
dbCon = sqlite3.connect(dbFile)