From 48812d057fef9dd80f3efd375d144eda372dd6ad Mon Sep 17 00:00:00 2001 From: James Wettenhall Date: Fri, 10 Jan 2020 11:50:31 +1100 Subject: [PATCH] Disable pylint's bad-continuation check, due to https://github.com/PyCQA/pylint/issues/289 and https://github.com/psf/black/issues/48 --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index cea8f34..94aee8e 100644 --- a/.pylintrc +++ b/.pylintrc @@ -140,7 +140,8 @@ disable=print-statement, exception-escape, comprehension-escape, cyclic-import, - import-outside-toplevel + import-outside-toplevel, + 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