From 6b086350dfa17fac1adfbed371148c1fbb478302 Mon Sep 17 00:00:00 2001 From: Gert van Dijk Date: Sat, 30 Sep 2023 17:41:19 +0200 Subject: [PATCH] Remove now useless pylint suppressions of C0326 and C0330 Fixes pylint meta-errors R0022 'useless-option-value': pyproject.toml:1:0: R0022: Useless option value for '--disable', 'C0330' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/3571. (useless-option-value) pyproject.toml:1:0: R0022: Useless option value for '--disable', 'C0326' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/3577. (useless-option-value) --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7880fe1..ae97169 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,9 +63,6 @@ fail-under = 9.0 max-line-length = 88 max-module-lines = 800 -[tool.pylint.message_control] -disable = "C0330, C0326" - [tool.black] line-length = 88 verbose = true