9 lines
490 B
Diff
9 lines
490 B
Diff
|
Remove dependency on dev-python/black used to format the generated hooks.py
|
||
|
file as it's not relevant in a packaging use case.
|
||
|
--- 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)
|