We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8237dad commit 3d56cf7Copy full SHA for 3d56cf7
pyproject.toml
@@ -49,6 +49,7 @@ target-version = "py310"
49
ignore = [
50
"E501", # Line too long
51
"E203", # Whitespace before ':'
52
+ "UP038", # Use `X | Y` in `isinstance` call instead of `(X, Y)` is deprecated and results in slower code
53
# "TRY301", # Raise within try block (this is actually a good practice)
54
# "W503" # Line break before binary operator (not PEP8 enforced, so not implemented in Ruff)
55
]
0 commit comments