From 7ab01f7844fd9b2a4f37428e29faaf87512f7340 Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Wed, 1 Feb 2023 07:51:45 -0500 Subject: [PATCH] Drops checks that were removed in latest pylint This addresses the following: .pylintrc:1:0: R0022: Useless option value for '--disable', 'C0326' was removed from pylint, see https://github.com/PyCQA/pylint/pull/3577. (useless-option-value) .pylintrc:1:0: R0022: Useless option value for '--disable', 'C0330' was removed from pylint, see https://github.com/PyCQA/pylint/pull/3571. (useless-option-value) Signed-off-by: Cleber Rosa --- .pylintrc | 2 -- 1 file changed, 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index 56e252340f..05e5ccc512 100644 --- a/.pylintrc +++ b/.pylintrc @@ -84,8 +84,6 @@ disable=W0212, C0302, C0321, C0325, - C0326, - C0330, C0413, C0415, E1101,