]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
🔧 Remove Ruff ignored rule for tabs (#15533)
authorSebastián Ramírez <tiangolo@gmail.com>
Fri, 15 May 2026 10:15:37 +0000 (12:15 +0200)
committerGitHub <noreply@github.com>
Fri, 15 May 2026 10:15:37 +0000 (10:15 +0000)
pyproject.toml

index 2d0e4cc8bc5b16bd35f125331acd207ea7cf3509..8b066c125e75e6cf6ffdffd0feb66c889e16f886 100644 (file)
@@ -278,7 +278,6 @@ ignore = [
     "E501",  # line too long, handled by black
     "B008",  # do not perform function calls in argument defaults
     "C901",  # too complex
-    "W191",  # indentation contains tabs
 ]
 
 [tool.ruff.lint.per-file-ignores]