From 94614660409c89029972b8d5ca684467672ebcf3 Mon Sep 17 00:00:00 2001 From: Katherine Whitlock Date: Fri, 17 Jan 2025 20:46:03 -0500 Subject: [PATCH] Add quiet to ruff 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 70ee78ba6d..ded8d7ff0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,7 +77,7 @@ jobs: - name: Run black or ruff run: | . venv/bin/activate - find esphome -name *.py -type f | parallel 'ruff format --check {} || black --quiet --check {}' + find esphome -name *.py -type f | parallel 'ruff format --quiet --check {} || black --quiet --check {}' flake8: name: Check flake8