From 6bde6cb70f0dadea7c2aa19e322f348fb91581b8 Mon Sep 17 00:00:00 2001 From: Gregory Thiemonge Date: Thu, 1 Jul 2021 09:50:15 +0200 Subject: [PATCH] Fix new pylint issues Disable new checker from pylint 2.9.0: arguments-renamed Change-Id: Ia061f72705c50df843e6d77ebe4e7d2962adba24 --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index f96576d2..87bb6abc 100644 --- a/.pylintrc +++ b/.pylintrc @@ -65,7 +65,8 @@ disable= consider-using-in, consider-using-set-comprehension, unnecessary-pass, - useless-object-inheritance + useless-object-inheritance, + arguments-renamed [BASIC]