From bd770fa6b112e9634ac30a6d9a5f645b0fadf293 Mon Sep 17 00:00:00 2001 From: Benjamin Drung Date: Mon, 30 Jan 2023 14:11:09 +0100 Subject: [PATCH] test: Do not run flake8 in verbose mode The verbose output of flake8 is not interesting and just clutters the output. Signed-off-by: Benjamin Drung --- run-linters | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-linters b/run-linters index fc1e81c..4f37218 100755 --- a/run-linters +++ b/run-linters @@ -5,4 +5,4 @@ set -eu # SPDX-License-Identifier: GPL-3.0 echo "Running flake8..." -flake8 -v --max-line-length=99 +flake8 --max-line-length=99