From de2ff697bde36c88afbc2f36c48b5991c5c4ad22 Mon Sep 17 00:00:00 2001 From: Federico Ressi Date: Fri, 24 Jul 2020 12:37:44 +0200 Subject: [PATCH] Remove -j0 option from pylint pre-commit hook Change-Id: Id6c920c87b97a8de4e5ee9574d0296651c3b1307 --- .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 ea594c046..ac731bcb1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -45,7 +45,7 @@ repos: - id: pylint files: ^tobiko/ name: pylint - entry: .tox/pep8/bin/pylint -j0 --max-line-length=80 -E -e W,E -d unused-import,broad-except,fixme + entry: .tox/pep8/bin/pylint --max-line-length=80 -E -e W,E -d unused-import,broad-except,fixme language: system types: [python]