The modules within sageranger folder (besides init) need to be linted using pylint and flake8 conventions. There are a few files with some "line too long" and "trailing white space errors" etc, and by running each bit of code through those checks, you can fix the errors and commit them. We don't want to change how the code works, just have them follow these conventions. You can do this by pip installing both pylint and flake8, and using the command line "flake8 " and the same for pylint. They both check for different errors so you'll have to run both.
The modules within sageranger folder (besides init) need to be linted using pylint and flake8 conventions. There are a few files with some "line too long" and "trailing white space errors" etc, and by running each bit of code through those checks, you can fix the errors and commit them. We don't want to change how the code works, just have them follow these conventions. You can do this by pip installing both pylint and flake8, and using the command line "flake8 " and the same for pylint. They both check for different errors so you'll have to run both.