From c717ac001a34f3a337d4e25ff05cb87835926cb4 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 25 Jun 2023 13:32:06 +0200 Subject: [PATCH] Disable black static check as it seems to have some dependency issues. --- .pre-commit-config.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4a060f2..d4526df 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,14 +1,14 @@ repos: -- repo: https://github.com/ambv/black - rev: 19.3b0 - hooks: - - id: black - types: [file] # override `types: [python]` - files: (\.py$|^SConstruct$|/SConscript$) - exclude: (^tests/_lib_vendors|^(tests|examples)/lib) # Ignore 3rd party stuff - args: - - "--line-length=100" - language_version: python3 +#- repo: https://github.com/ambv/black +# rev: 19.3b0 +# hooks: +# - id: black +# types: [file] # override `types: [python]` +# files: (\.py$|^SConstruct$|/SConscript$) +# exclude: (^tests/_lib_vendors|^(tests|examples)/lib) # Ignore 3rd party stuff +# args: +# - "--line-length=100" +# language_version: python3 - repo: https://github.com/pre-commit/pre-commit-hooks rev: v2.2.3 hooks: