From 549d932d7b54946a2dc622ce12ff3415acd23880 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Thu, 23 Jun 2022 16:45:56 +1000 Subject: Fix root-displayed-in-italics bug --- backend/data/genOtolData.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'backend/data/genOtolData.py') 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) -- cgit v1.2.3