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:21:11 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-05-28 22:21:11 +0300
commit6e9eab1107ccf10356d4557441e846ac30af0fe2 (patch)
tree77b57e515f3fe0b4a7333708e95f90d5b5ca5383 /pyproject.toml
parenta4cacbfa7c2c294c4cf964bea4a80d2af368f102 (diff)
cq: Import from collections.abc instead from typing
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 806e05384..5196ff53a 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -234,7 +234,6 @@ ignore = [
"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
- "UP035", # Import from `collections.abc` instead: `Callable`
"UP038", # Use `X | Y` in `isinstance` call instead of `(X, Y)`
"UP037", # Remove quotes from type annotation
]