From 73c7e5e6c2498ad87911163a167dcee754f17f73 Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Sat, 19 Nov 2022 16:35:04 +0100 Subject: [PATCH] Syntax Bug fixed --- caliGraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caliGraph.py b/caliGraph.py index 42e61e3..a39db06 100755 --- a/caliGraph.py +++ b/caliGraph.py @@ -833,7 +833,7 @@ def addScoreToLabels(G): node['score'], node['se']) else: node['label'] += " (0±∞)" - if False node['t'] in ['tag']: + if False and node['t'] in ['tag']: if 'score' in node and node['score'] != None and 'se' in node: node['label'] += " ({:.1f})".format( node['score'])