From f5aa2559d7dc3b7cf2e0f61f470ad9ee33a461da Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Wed, 13 Sep 2023 08:14:01 +0200 Subject: [PATCH] Fix pylint config warning (#100251) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7bab1c1b122..7bc3edc9bf0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -289,7 +289,7 @@ disable = [ "use-list-literal", # C405 "useless-object-inheritance", # UP004 "useless-return", # PLR1711 - "no-self-use", # PLR6301 + # "no-self-use", # PLR6301 # Optional plugin, not enabled # Handled by mypy # Ref: