tools: Fix python isort

- isort is not in the path
- Run in the system python with /usr/bin/python3 -m isort
This commit is contained in:
Andrew Hamilton 2025-06-09 17:08:07 +10:00
parent 6ec4f958ff
commit ad74f48679

View file

@ -89,7 +89,7 @@ tools_for_extensions = [
[isort]
dependencies = ["python3-isort", "python3-colorama"]
url = "https://pycqa.github.io/isort/"
command = "isort --check-only --diff --color"
command = "/usr/bin/python3 -m isort --check-only --diff --color"
has_color = true
[perl_syntax]