From 3e6678f9c692553e8902da4d6fb1fe6c087db1f4 Mon Sep 17 00:00:00 2001 From: Marcel Enguehard Date: Wed, 19 Jul 2017 11:26:26 +0200 Subject: * GUI resource * MemIf interface for VPP * Better netmodel integration * Draft documentation * New tutorials * Improved monitoring and error handling * Refactored IP addresses and prefixes representation * Improved image mgmt for LXD * Various bugfixes and code refactoring Change-Id: I90da6cf7b5716bc7deb6bf4e24d3f9f01b5a9b0f Signed-off-by: Marcel Enguehard --- netmodel/model/collection.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'netmodel/model/collection.py') diff --git a/netmodel/model/collection.py b/netmodel/model/collection.py index 21be84d8..01a63299 100644 --- a/netmodel/model/collection.py +++ b/netmodel/model/collection.py @@ -16,9 +16,10 @@ # limitations under the License. # -from netmodel.model.filter import Filter +from netmodel.model.sa_collections import InstrumentedList +from netmodel.model.filter import Filter -class Collection(list): +class Collection(InstrumentedList): """ A collection corresponds to a list of objects, and includes processing functionalities to manipulate them. -- cgit 1.2.3-korg