From f23d53fe1ad43cc269d751423895f5228433cb8f Mon Sep 17 00:00:00 2001 From: kpj Date: Sun, 27 Feb 2022 15:33:10 +0100 Subject: [PATCH] Remove --verbose parameter from black call --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de866f3d7..6e2c546ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,7 +91,7 @@ jobs: name: Run black uses: psf/black@stable with: - options: "--check --diff --verbose" + options: "--check --diff" src: "./src" version: "22.1.0"