From ad74f48679f34748ca3fbff34e2f3b483548f1af Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Mon, 9 Jun 2025 17:08:07 +1000 Subject: [PATCH] tools: Fix python isort - isort is not in the path - Run in the system python with /usr/bin/python3 -m isort --- eris/tools.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eris/tools.toml b/eris/tools.toml index a8b8621..24deb72 100644 --- a/eris/tools.toml +++ b/eris/tools.toml @@ -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]