Skip to content

Commit bcb1274

Browse files
committed
Fix quoting
1 parent 48bd8d7 commit bcb1274

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
else
3131
PIP_ARGS=""
3232
fi
33-
python3 -mpip install -q --upgrade pip "${PIP_ARGS}"
34-
python3 -mpip install -q flake8 pylint ruff mypy pytype pyright fixit pyre-check "${PIP_ARGS}"
35-
python3 -mpip install -q flake8-sarif-formatter "${PIP_ARGS}"
33+
python3 -mpip install ${PIP_ARGS} -q --upgrade pip
34+
python3 -mpip install ${PIP_ARGS} -q flake8 pylint ruff mypy pytype pyright fixit pyre-check
35+
python3 -mpip install ${PIP_ARGS} -q flake8-sarif-formatter
3636
- name: Run Python Lint
3737
uses: advanced-security/python-lint-code-scanning-action@main
3838
with:

0 commit comments

Comments
 (0)