From 4e3c24b359d52e6e73e2ec02bcd0543174129ef1 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 21 Aug 2022 23:48:36 +0200 Subject: [PATCH] chore: flake8 disable G004 --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 243da9b..1405d02 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,8 +9,9 @@ # D107: Missing docstring in __init__ # D202: No blank lines allowed after function docstring # G001: Logging statements should not use string.format() for their first argument +# G004: Logging statements should not use f"..." for their first argument # W503: Line break occurred before a binary operator -ignore = D100, D101, D102, D103, D107, D202, G001, W503 +ignore = D100, D101, D102, D103, D107, D202, G001, G004, W503 max-line-length = 99 inline-quotes = double exclude = .git, __pycache__, build, dist, test, *.pyc, *.egg-info, .cache, .eggs, env*