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 15:55:54 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-05-28 22:12:04 +0300
commited674b8cb125c98d068ca75c418a1164bae05b0d (patch)
tree5b856555e5bbd9ef88a4c11b18167c0500f4a917 /pyproject.toml
parent79f003214d7df869c53fcd1a05374d97b7a38017 (diff)
cq: Simplify string formatting
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml2
1 files changed, 0 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index fae748650..49f1079e6 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -233,8 +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
- "UP030", # Use implicit references for positional format fields
- "UP031", # Use format specifiers instead of percent format
"UP032", # Use f-string instead of `format` call
"UP034", # Avoid extraneous parentheses
"UP035", # Import from `collections.abc` instead: `Callable`