From 0ff15a58fa76011848343f9ff471bab158ade1ff Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 27 Nov 2013 13:06:44 +0900 Subject: [PATCH] of13 OFPTableFeaturesStatsRequest: remove an unused argument and while i'm here, document arguments. Signed-off-by: YAMAMOTO Takashi Signed-off-by: FUJITA Tomonori --- ryu/ofproto/ofproto_v1_3_parser.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py index 103969a8..df5d4609 100644 --- a/ryu/ofproto/ofproto_v1_3_parser.py +++ b/ryu/ofproto/ofproto_v1_3_parser.py @@ -5087,10 +5087,17 @@ class OFPTableFeaturesStatsRequest(OFPMultipartRequest): Table features statistics request message The controller uses this message to query table features. + + ================ ====================================================== + Attribute Description + ================ ====================================================== + body List of ``OFPTableFeaturesStats`` instances. + The default is []. + ================ ====================================================== """ def __init__(self, datapath, flags, body=[], - properties=[], type_=None): + type_=None): super(OFPTableFeaturesStatsRequest, self).__init__(datapath, flags) self.body = body