From 545216fdee77b0b9ddc8d5e8c0f2e5662cacea76 Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Thu, 15 Aug 2019 06:36:36 +0000 Subject: Reduce disabled pylint to address them not hide + Fixed Qemu - Broad Exception should be addressed - Policer is about to be refactored - Drop search to be refactored Signed-off-by: Peter Mikus Change-Id: I97eb992497ff6334057bf82a0f413387706e17fd --- resources/libraries/python/Policer.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'resources/libraries/python/Policer.py') diff --git a/resources/libraries/python/Policer.py b/resources/libraries/python/Policer.py index 55429e7cb3..9e14a4fd58 100644 --- a/resources/libraries/python/Policer.py +++ b/resources/libraries/python/Policer.py @@ -109,7 +109,6 @@ class PolicerClassifyTableType(Enum): self.string = string -# pylint: disable=too-many-instance-attributes class Policer(object): """Policer utilities.""" @@ -145,7 +144,6 @@ class Policer(object): # create policer color_aware = 'color-aware' if self._color_aware else '' - # pylint: disable=no-member conform_action = self._conform_action.value if PolicerAction.MARK_AND_TRANSMIT == self._conform_action: @@ -213,7 +211,7 @@ class Policer(object): node, "policer/policer_classify_add_session.vat", policer_index=policer_index, - pre_color=self._classify_precolor.value, # pylint: disable=no-member + pre_color=self._classify_precolor.value, table_index=new_table_index, skip_n=skip_n_vectors, match_n=match_n_vectors, @@ -228,7 +226,7 @@ class Policer(object): node, "policer/policer_classify_set_interface.vat", sw_if_index=self._sw_if_index, - table_type=table_type.value, # pylint: disable=no-member + table_type=table_type.value, table_index=new_table_index) VatJsonUtil.verify_vat_retval( -- cgit 1.2.3-korg