diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-02-11 13:51:22 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-02-20 15:20:39 +0100 |
| commit | e520a0c5ef88af6a7fb314aaf273d8d105352e9e (patch) | |
| tree | 5512b9156ea4c9cf4b8d52a3d4fa7b0c06fa33fc /miasm2/core/graph.py | |
| parent | f1966ac767894b4fe954613d2134f87cdc3697ca (diff) | |
| download | miasm-e520a0c5ef88af6a7fb314aaf273d8d105352e9e.tar.gz miasm-e520a0c5ef88af6a7fb314aaf273d8d105352e9e.zip | |
DiGraph: Inherite DiGraph from `object`
Diffstat (limited to 'miasm2/core/graph.py')
| -rw-r--r-- | miasm2/core/graph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/graph.py b/miasm2/core/graph.py index 2b873ad9..b25907e5 100644 --- a/miasm2/core/graph.py +++ b/miasm2/core/graph.py @@ -1,6 +1,6 @@ from collections import defaultdict -class DiGraph: +class DiGraph(object): """Implementation of directed graph""" def __init__(self): |