diff options
| author | LV-426 <lv-426@taproot.org.il> | 2014-10-15 22:11:44 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2014-10-15 22:11:44 +0200 |
| commit | 3d0306271a427f7a2e47aea18429c1cad8e74bee (patch) | |
| tree | ba9d7627e1c5aac71bcce90de250179f1c0ee084 /src-py/model/graph.py | |
| parent | 10af77cc4a76448041b333d8ec793751dc3022a1 (diff) | |
Attribute_Diff
Diffstat (limited to 'src-py/model/graph.py')
| -rw-r--r-- | src-py/model/graph.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src-py/model/graph.py b/src-py/model/graph.py index 9891c4ef..9ad4601c 100644 --- a/src-py/model/graph.py +++ b/src-py/model/graph.py @@ -4,7 +4,11 @@ class Attribute_Diff(): either logical nodes or logical links, and attributes can be added, changed or removed """ - pass + def __init__(self, id_to_attr_diff_map={}): + """ + @param id_to_attr_diff_map + """ + self.id_to_attr_diff_map = id_to_attr_diff_map class Topo_Diff(): """ |
