From e6144b232e3ff626d654bf274025f5d55a6bca84 Mon Sep 17 00:00:00 2001 From: LV-426 Date: Sun, 14 Dec 2014 23:12:02 +0200 Subject: link attr operations not yet supported... --- src-py/model/graph.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src-py/model') diff --git a/src-py/model/graph.py b/src-py/model/graph.py index efc403d4..f197921d 100644 --- a/src-py/model/graph.py +++ b/src-py/model/graph.py @@ -59,6 +59,12 @@ class Attr_Diff(dict): n_attr_diff = self.init_node_attr_diff(n_id) n_attr_diff['__attr_remove'].append(attr_name) + def add_link_attr_write(self, l_id, attr_name, attr_val): + assert False, 'unimplemented' + + def add_link_attr_rm(self, l_id, attr_name): + assert False, 'unimplemented' + class Topo_Diff(object): """ Represents a change to the graph topology -- cgit v1.3.1