File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,12 @@ depends = [
1010]
1111
1212[tasks ."check:mypy" ]
13- run = " mypy --python-executable $(uv python find) ."
13+ run = """
14+ # Run mypy
15+ pythonExecutable=$(uv python find)
16+ echo "Running mypy with python executable: ${pythonExecutable}"
17+ mypy --python-executable "${pythonExecutable}" .
18+ """
1419
1520[tasks ."check:pyright" ]
1621run = " uv run pyright"
Original file line number Diff line number Diff line change @@ -10,7 +10,12 @@ depends = [
1010]
1111
1212[tasks ."check:mypy" ]
13- run = " mypy --python-executable $(uv python find) ."
13+ run = """
14+ # Run mypy
15+ pythonExecutable=$(uv python find)
16+ echo "Running mypy with python executable: ${pythonExecutable}"
17+ mypy --python-executable "${pythonExecutable}" .
18+ """
1419
1520[tasks ."check:pyright" ]
1621run = " uv run pyright"
You can’t perform that action at this time.
0 commit comments