chore: removing unused imports in tests (#9049)

This commit is contained in:
Bowen Liang
2024-10-08 11:13:11 +08:00
committed by GitHub
parent a8b4d1ac2a
commit 7c0b159a81
30 changed files with 21 additions and 52 deletions

View File

@@ -74,8 +74,6 @@ ignore = [
[tool.ruff.lint.per-file-ignores]
"app.py" = [
"F401", # unused-import
"F811", # redefined-while-unused
]
"__init__.py" = [
"F401", # unused-import
@@ -88,10 +86,15 @@ ignore = [
"N803", # invalid-argument-name
]
"tests/*" = [
"F401", # unused-import
"F811", # redefined-while-unused
]
[tool.ruff.lint.pyflakes]
allowed-unused-imports=[
"_pytest.monkeypatch",
"tests.integration_tests",
]
[tool.ruff.format]
exclude = [
]
@@ -260,4 +263,4 @@ optional = true
[tool.poetry.group.lint.dependencies]
dotenv-linter = "~0.5.0"
ruff = "~0.6.8"
ruff = "~0.6.9"