From cf561a6e3d4c4fbd78ab6c9d0a9aa817bb3300fc Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Thu, 15 Dec 2016 10:52:33 +0100 Subject: Pylint fixes - Fix PyLint errors - Fix comments in touched python modules Change-Id: I26db2d292a41969cf38b9b0bdd49c4fb15349102 Signed-off-by: Tibor Frank --- resources/libraries/python/telemetry/IPFIXUtil.py | 6 ++---- resources/libraries/python/telemetry/SPAN.py | 4 +--- resources/libraries/python/telemetry/__init__.py | 4 ++++ 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'resources/libraries/python/telemetry') diff --git a/resources/libraries/python/telemetry/IPFIXUtil.py b/resources/libraries/python/telemetry/IPFIXUtil.py index 1b193f8325..2f83760759 100644 --- a/resources/libraries/python/telemetry/IPFIXUtil.py +++ b/resources/libraries/python/telemetry/IPFIXUtil.py @@ -86,8 +86,7 @@ class IPFIXHeader(Packet): IntField("Sequence Number", 0), IntField("Observation Domain ID", 0), ShortField("Set_ID", 0), - ShortField("Set_Length", 0) - ] + ShortField("Set_Length", 0)] class IPFIXTemplate(Packet): @@ -96,8 +95,7 @@ class IPFIXTemplate(Packet): fields_desc = [ShortField("Template_ID", 256), ShortField("nFields", 2), FieldListField("Template", [], ShortField("type_len", ""), - count_from=lambda p: p.nFields*2) - ] + count_from=lambda p: p.nFields*2)] class IPFIXData(Packet): diff --git a/resources/libraries/python/telemetry/SPAN.py b/resources/libraries/python/telemetry/SPAN.py index aff465c0ea..41ff7d34f1 100644 --- a/resources/libraries/python/telemetry/SPAN.py +++ b/resources/libraries/python/telemetry/SPAN.py @@ -17,7 +17,6 @@ from resources.libraries.python.topology import Topology from resources.libraries.python.VatExecutor import VatTerminal -# pylint: disable=too-few-public-methods class SPAN(object): """Class contains methods for setting up SPAN mirroring on DUTs.""" @@ -43,8 +42,7 @@ class SPAN(object): with VatTerminal(node, json_param=False) as vat: vat.vat_terminal_exec_cmd_from_template('span_create.vat', src_sw_if_index=src_if, - dst_sw_if_index=dst_if, - ) + dst_sw_if_index=dst_if) @staticmethod def vpp_get_span_configuration(node): diff --git a/resources/libraries/python/telemetry/__init__.py b/resources/libraries/python/telemetry/__init__.py index 5a0e0e1c5e..cc11de329f 100644 --- a/resources/libraries/python/telemetry/__init__.py +++ b/resources/libraries/python/telemetry/__init__.py @@ -10,3 +10,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + +""" +__init__ file for resources/libraries/python/telemetry +""" -- cgit 1.2.3-korg