don't ignore UP038 in ruff (#14862)

it was removed, this has no effect
This commit is contained in:
lev-blit
2025-10-10 20:41:31 +03:00
committed by GitHub
parent 560f6ddd32
commit d7cf36970f
-2
View File
@@ -175,8 +175,6 @@ ignore = [
"TD003", # Missing issue link for this TODO
# Mostly from scripts and tests, it's ok to have messages passed directly to exceptions
"TRY003", # Avoid specifying long messages outside the exception class
# Slower and more verbose https://github.com/astral-sh/ruff/issues/7871
"UP038", # Use `X | Y` in `isinstance` call instead of `(X, Y)`
"PLC0205", # Sometimes __slots__ really is a string at runtime
###
# False-positives, but already checked by type-checkers