📝 Edit page
➕ Add page
Black
Format with the black command.
Apply fixes
This is useful for local development.
This command will apply fixes in place and show any fatal errors.
$ black .
Check
This is useful for a CI flow.
This command will print the fixes needed without applying them and exit with error status if fixes need to be applied.
$ black . --diff --check