From aaa420b15f0039a5cd60018b2e6ab288b964bd8f Mon Sep 17 00:00:00 2001 From: saimachi Date: Thu, 21 Dec 2023 07:26:47 -0800 Subject: [PATCH 1/2] Suppressed unnecessary issues in .pylintrc --- src/python/PythonSDK/.pylintrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/python/PythonSDK/.pylintrc b/src/python/PythonSDK/.pylintrc index 2c964dc588..5ae3fad100 100644 --- a/src/python/PythonSDK/.pylintrc +++ b/src/python/PythonSDK/.pylintrc @@ -431,7 +431,10 @@ disable=raw-checker-failed, use-symbolic-message-instead, use-implicit-booleaness-not-comparison-to-string, use-implicit-booleaness-not-comparison-to-zero, - broad-exception-caught + broad-exception-caught, + arguments-differ, + too-few-public-methods, + too-many-return-statements # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option From 2997c56bfeafe21161a0c879632b6b40fec65757 Mon Sep 17 00:00:00 2001 From: saimachi Date: Thu, 21 Dec 2023 09:09:35 -0800 Subject: [PATCH 2/2] Removed "duplicate code" suggestion --- src/python/PythonSDK/.pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/python/PythonSDK/.pylintrc b/src/python/PythonSDK/.pylintrc index 5ae3fad100..841d6509d2 100644 --- a/src/python/PythonSDK/.pylintrc +++ b/src/python/PythonSDK/.pylintrc @@ -434,7 +434,8 @@ disable=raw-checker-failed, broad-exception-caught, arguments-differ, too-few-public-methods, - too-many-return-statements + too-many-return-statements, + duplicate-code # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option