From b05242c27a613b9166c440d7ea7a2a72e03df0ae Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Thu, 6 Feb 2025 22:29:21 -0600 Subject: [PATCH] CI: Make black line length match pre-commit --- .github/workflows/sub_lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sub_lint.yml b/.github/workflows/sub_lint.yml index 7119fb5c4b..7b4b36be27 100644 --- a/.github/workflows/sub_lint.yml +++ b/.github/workflows/sub_lint.yml @@ -380,7 +380,7 @@ jobs: blackFails=0 pip install --break-system-packages black set +e - black --check ${{ inputs.changedPythonFiles }} &> ${{ env.logdir }}black.log + black --line-length 100 --check ${{ inputs.changedPythonFiles }} &> ${{ env.logdir }}black.log exitCode=$? set -e # If black has run successfully, write the Log to the console with the Problem Matchers