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