flake8: Ignore "f-string is missing placeholders"

This commit is contained in:
Son NK 2021-01-11 10:28:29 +01:00
parent cce08adb87
commit 70cc920ce8
1 changed files with 3 additions and 1 deletions

View File

@ -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__,