From b9530b313fe5e1f5ab4fa2d3daa117789d7fea68 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 2 Dec 2021 16:18:43 +0100 Subject: pylint: Disable logging-fstring-interpolation for now See #6197 --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 4ec66670c..161e3df1a 100644 --- a/.pylintrc +++ b/.pylintrc @@ -47,7 +47,8 @@ disable=locally-disabled, too-few-public-methods, import-outside-toplevel, bad-continuation, # This lint disagrees with Black - consider-using-f-string + consider-using-f-string, + logging-fstring-interpolation [BASIC] function-rgx=[a-z_][a-z0-9_]{2,50}$ -- cgit v1.2.3-54-g00ecf