diff options
| author | Ajax <commial@gmail.com> | 2016-02-02 20:25:04 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2016-02-04 23:20:21 +0100 |
| commit | 38fb7d07fc90e17a95c96b80fe9e0825a09ea498 (patch) | |
| tree | 8dd1c5b000fbfcfc86e9b7095519ee2c2baab9ff /miasm2/core/graph.py | |
| parent | 147a217b64b3610cdd822b0f23ad2af8106960fd (diff) | |
| download | miasm-38fb7d07fc90e17a95c96b80fe9e0825a09ea498.tar.gz miasm-38fb7d07fc90e17a95c96b80fe9e0825a09ea498.zip | |
Remove unused variables
Diffstat (limited to 'miasm2/core/graph.py')
| -rw-r--r-- | miasm2/core/graph.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/miasm2/core/graph.py b/miasm2/core/graph.py index f544757d..c98bf8a9 100644 --- a/miasm2/core/graph.py +++ b/miasm2/core/graph.py @@ -195,8 +195,6 @@ class DiGraph(object): """Render dot graph with HTML""" escape_chars = re.compile('[' + re.escape('{}') + '&|<>' + ']') - label_attr = 'colspan="2" align="center" bgcolor="grey"' - edge_attr = 'label = "%s" color="%s" style="bold"' td_attr = {'align': 'left'} nodes_attr = {'shape': 'Mrecord', 'fontname': 'Courier New'} @@ -287,7 +285,6 @@ class DiGraph(object): dominators[node] = set(nodes) dominators[head] = set([head]) - modified = True todo = set(nodes) while todo: |