
black internally uses multiprocessing for speed. In pre-commit 1.13.0 this is automated by the framework itself however if both pre-commit and black are forking processes this is slower and hits race-conditions in `black`.
9 lines
210 B
YAML
9 lines
210 B
YAML
- id: black
|
|
name: black
|
|
description: 'Black: The uncompromising Python code formatter'
|
|
entry: black
|
|
language: python
|
|
language_version: python3
|
|
require_serial: true
|
|
types: [python]
|