OnedgeLee / simple-py-crypto

Simple toy implementation of crypto written in python
0 stars 0 forks source link

Black workflow works with --check option #1

Closed OnedgeLee closed 2 years ago

OnedgeLee commented 2 years ago

Black workflow works with --check option. That's because default black_args are . --check --diff. Black is powerful tool for automatic code fixing though, for linting, Pylint is better I think. So, I decided to use Black as automatic code fixing tool, and use Pylint as a final checker. --check option is not needed, and have to be removed.