1 From 104572dc7ebb75061b867158ce3d4311d8cf4594 Mon Sep 17 00:00:00 2001
2 From: Euan Kemp <euank@euank.com>
3 Date: Thu, 6 Jul 2023 10:05:15 +0900
4 Subject: [PATCH] Skip formatting Python code.
6 Co-authored-by: Pavel Sobolev <paveloom@riseup.net>
8 pylib/tools/hookslib.py | 1 -
9 1 file changed, 1 deletion(-)
11 diff --git a/pylib/tools/hookslib.py b/pylib/tools/hookslib.py
12 index 6361c633e..6b16d3ec1 100644
13 --- a/pylib/tools/hookslib.py
14 +++ b/pylib/tools/hookslib.py
15 @@ -208,4 +208,3 @@ def write_file(path: str, hooks: list[Hook], prefix: str, suffix: str):
16 os.environ["USERPROFILE"] = os.environ["HOME"]
17 with open(path, "wb") as file:
18 file.write(code.encode("utf8"))
19 - subprocess.run([sys.executable, "-m", "black", "-q", path], check=True)