From 47b337703acdf4ecc62612cfa48d2a3a4f8f9ef9 Mon Sep 17 00:00:00 2001 From: Ivan Yordanov Date: Wed, 27 Sep 2023 14:57:54 +0300 Subject: [PATCH] fix: ruff args in pre-commit --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 028858db7..58cbd7662 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,7 +10,7 @@ repos: - id: ruff-ci name: ruff-ci entry: ruff - args: [ --config, pyproject.toml, --fix, --show-fixes, --exit-non-zero-on-fix, --output-format "text" ] + args: [ --config, pyproject.toml, --fix, --show-fixes, --exit-non-zero-on-fix, --output-format, text ] language: system types_or: [python] stages: [manual]