Closes #19112: Configure ruff to target Python 3.10 (#19113)

This commit is contained in:
Jeremy Stretch 2025-04-08 10:46:31 -04:00 committed by GitHub
parent 2207ea1a32
commit 2be257db48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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"]