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 14:56:11 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-05-28 15:49:49 +0300
commitdc0e24693622b8b475fb4cc82866166c1bec50d8 (patch)
tree7eee1cf7732b0d653d8db1bd8b54b91b71eca122 /pyproject.toml
parent9a7f27ea9b7ceed516fc96732953a8c02bed47f3 (diff)
cq: Use union operator everywhere
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 b77d0b231..fae748650 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
- "UP007", # Use X | Y for type annotations
"UP030", # Use implicit references for positional format fields
"UP031", # Use format specifiers instead of percent format
"UP032", # Use f-string instead of `format` call