From 70cc920ce80da693f253619e05ebb6252f3b216e Mon Sep 17 00:00:00 2001 From: Son NK <> Date: Mon, 11 Jan 2021 10:28:29 +0100 Subject: [PATCH] flake8: Ignore "f-string is missing placeholders" --- .flake8 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 4202a253..4b631a19 100644 --- a/.flake8 +++ b/.flake8 @@ -4,7 +4,9 @@ ignore = E501, # W503 & E203 are not PEP 8 compliant and conflicts with black W503, - E203 + E203, + # Ignore "f-string is missing placeholders" + F541 exclude = .git, __pycache__,