Skip to content

Commit

Permalink
ci: Ignore PYI024 as Python 3.10 doesn't support generic namedtuples
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 3, 2023
1 parent 7125049 commit e257147
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ line-length = 119
select = ["ALL"]
target-version = "py310"
ignore = [
"ANN", "COM", "CPY", "EM",
"ANN", "COM", "EM",
"D100", "D104", "D200", "D203", "D205", "D212", "D400", "D415",
"ARG001", "ARG002", # unused arguments (callbacks)
"PLR0913", # many arguments (decorators)
"PYI024", # Python 3.10 has no generic namedtuples
]

[tool.ruff.flake8-builtins]
Expand Down

0 comments on commit e257147

Please sign in to comment.