Closed pyrooka closed 1 year ago
This commit adds the Black code formatter to the project and updates the Makefile to use it. There are 2 targets that run the black tool:
Makefile
black
make lint
pylint
make lint-fix
(Initial code formatting is also included.)
:tada: This PR is included in version 3.16.1 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
This commit adds the Black code formatter to the project and updates the
Makefile
to use it. There are 2 targets that run theblack
tool:make lint
: this will check the code with bothpylint
andblack
make lint-fix
: this will reformat the code usingblack
.(Initial code formatting is also included.)