When multiple developers are working on the same code, differences in formatting styles can cause unnecessary merge conflicts and make the code more difficult to read. black can be configured as a pre-commit hook (see Pydra for an example) to avoid these issues by enforcing a strict formatting style.
Description
When multiple developers are working on the same code, differences in formatting styles can cause unnecessary merge conflicts and make the code more difficult to read.
black
can be configured as a pre-commit hook (see Pydra for an example) to avoid these issues by enforcing a strict formatting style.Might also be worth looking at
yapf
Acceptance Criteria
black
is run before every commitBlocked by