From 6bd6777fb75806e3cff16cff95f3e92b171e1ed7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Bal=C3=A1=C5=BEik?= Date: Thu, 2 Nov 2023 16:29:46 +0100 Subject: [PATCH] Silent pylint's line-too-long warning as it's handled better by black Black allows the lines with string literals to be longer, which is convenient for descriptive error messages. (cherry picked from commit 02d1c5fc8914a3656d7dc124a43dc1273da441c8) --- .pylintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.pylintrc b/.pylintrc index 07d503514d..b5ea55a5e5 100644 --- a/.pylintrc +++ b/.pylintrc @@ -5,6 +5,7 @@ disable= C0115, # missing-class-docstring C0116, # missing-function-docstring C0209, # consider-using-f-string + C0301, # line-too-long, handled better by black C0415, # import-outside-toplevel R0801, # duplicate-code R0903, # too-few-public-methods