From c223bdf820223d0df4f4e2a6656689ef3d8a0972 Mon Sep 17 00:00:00 2001 From: nkrapp Date: Mon, 12 Dec 2022 09:48:52 +0100 Subject: [PATCH] disable pylint bad-continuation see: https://github.com/PyCQA/pylint/issues/289 --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 83c2206..370302a 100644 --- a/.pylintrc +++ b/.pylintrc @@ -138,7 +138,8 @@ disable=print-statement, xreadlines-attribute, deprecated-sys-function, exception-escape, - comprehension-escape + comprehension-escape, + bad-continuation # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option