Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-05-28 22:30:32 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-05-28 22:30:32 +0300
commitaf4223a99c11ac696f2bcd96b9567b6b92cf2c62 (patch)
treed511781de7ba5dc8eb2514fdfc59ee0f20b93c8f /pyproject.toml
parent5a9362fd275e36ca931d4936eb7c40209741759b (diff)
cq: Use f-string instead of `format` call
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml1
1 files changed, 0 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 5444ed27c..9a5dd5495 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -233,7 +233,6 @@ ignore = [
"SIM201", # Use x instead of not x
"SIM212", # Use `value if value else ''` instead of `'' if not value else value`
"SIM300", # Yoda conditions are discouraged use x instead
- "UP032", # Use f-string instead of `format` call
"UP037", # Remove quotes from type annotation
]