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 b2fbda29d3
commit 3990d7e064

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