From c69fe5ff4e3a790e26dd424245ecf054fbad0fc6 Mon Sep 17 00:00:00 2001 From: Sangwook Ha Date: Sat, 17 Sep 2022 13:56:17 -0700 Subject: [PATCH] Bump pre-commit black black to 22.8.0 Current version of black is not compatible with click 8.1.x: ImportError: cannot import name '_unicodefun' from 'click' This issue has been fixed since 22.3.0: https://github.com/psf/black/releases/tag/22.3.0 Upgrade black to the latest version (22.8.0). Change-Id: Iacf8328ea4b7622412948238c206c5af4ff692cd Signed-off-by: Sangwook Ha --- .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 e940f86350..e325ecd428 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,7 +14,7 @@ repos: - id: flake8 - repo: https://github.com/psf/black - rev: 22.1.0 + rev: 22.8.0 hooks: - id: black -- 2.36.6