From cb9eecc87ec840287d4b2b601bcd5cb2ba0cc091 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 2 Dec 2021 16:16:34 +0100 Subject: pylint: Disable consider-using-f-string Too big code churn right now, will do this for qutebrowser v3.0.0: See #3020 --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index b771078f3..4ec66670c 100644 --- a/.pylintrc +++ b/.pylintrc @@ -46,7 +46,8 @@ disable=locally-disabled, too-many-statements, too-few-public-methods, import-outside-toplevel, - bad-continuation # This lint disagrees with Black + bad-continuation, # This lint disagrees with Black + consider-using-f-string [BASIC] function-rgx=[a-z_][a-z0-9_]{2,50}$ -- cgit v1.2.3-54-g00ecf