From 9eed1922d0d1c2121859233762e8352155307fd7 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 f16e21ed34..3b2a90cd20 100644 --- a/.github/workflows/sub_lint.yml +++ b/.github/workflows/sub_lint.yml @@ -442,7 +442,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