stype: fix ruff UP007 rule, typings

This commit is contained in:
Dowon
2024-02-29 20:30:44 +09:00
parent f21ac7b28f
commit 6dcad30b64
3 changed files with 7 additions and 6 deletions

View File

@@ -36,7 +36,10 @@ select = [
"UP",
"W",
]
ignore = ["B008", "B905", "E501", "F401", "UP007"]
ignore = ["B008", "B905", "E501", "F401"]
[tool.ruff.lint.isort]
known-first-party = ["launch", "modules"]
[tool.ruff.lint.pyupgrade]
keep-runtime-typing = true