KULL-Centre / BME

Integrating Molecular Simulation and Experimental Data
GNU General Public License v3.0
20 stars 7 forks source link

formats code, fixes flake8 errors and warnings #1

Closed puinenveturi closed 3 years ago

sbottaro commented 5 years ago

Just out of curiosity: what are flake8 errors?

puinenveturi commented 5 years ago

Flake8 is “the wrapper which verifies pep8, pyflakes and circular complexity“. It verifies that your coding style follows the pep8 guidelines and suggests/enforces good practices.

For example if you are using too much spaces or too long lines or strange (but valid) indentation, a linter can warn you that there would be a better / more pythonic way to write that. If you follow these guidelines, it can be easier for other people to read your code.