From e80f36d8e4ffaa0d49bf78e09bd547a362d7a2ab Mon Sep 17 00:00:00 2001 From: Costa Shulyupin Date: Sat, 11 Aug 2018 17:52:46 +0300 Subject: [PATCH] cleanup --- srcxray.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/srcxray.py b/srcxray.py index 1dc050a..13ac375 100755 --- a/srcxray.py +++ b/srcxray.py @@ -644,8 +644,6 @@ def write_dot(g, dot): ranks[r].append(n) if not g.out_degree(n): continue - # dot.write((n if n != 'node' else '"node"') + ';\n') - # dot.write((n if n != 'node' else '"node"') + ' -> { ') dot.write('"%s" -> { ' % (n)) dot.write(' '.join(['"%s"' % (str(a)) for a in g.successors(n)])) if r and scaled: