Closes #19112: Configure ruff to target Python 3.10

This commit is contained in:
Jeremy Stretch 2025-04-08 10:31:33 -04:00
parent 2207ea1a32
commit 775d1b1d10

View File

@ -2,6 +2,7 @@ exclude = [
"netbox/project-static/**" "netbox/project-static/**"
] ]
line-length = 120 line-length = 120
target-version = "py310"
[lint] [lint]
extend-select = ["E1", "E2", "E3", "E501", "W"] extend-select = ["E1", "E2", "E3", "E501", "W"]