From 5ddbdf5c2b28bcdb3165e2d5c01fd6fa8950d631 Mon Sep 17 00:00:00 2001 From: Ross Patterson Date: Sun, 6 Nov 2022 04:42:21 -0800 Subject: [PATCH] style(pylint): Update PyLint match Black's defaults Addresses the following linter errors: pyproject.toml:1:0: R0022: Useless option value for '--disable', 'C0330' was removed from pylint, see https://github.com/PyCQA/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/PyCQA/pylint/pull/3577. (useless-option-value) --- pyproject.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9dd97cb70..507015906 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,8 +25,6 @@ extension-pkg-allow-list = ["lxml"] ignored-classes = ["lxml.etree.QName.localname"] # Match Black's defaults # https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#pylint -[tool.pylint.messages_control] -disable = "C0330, C0326" [tool.pylint.format] max-line-length = "88"