Closed plaplant closed 7 years ago
The tool autopep8 was applied to the repo, to clean up the style of the code. The exact command executed was:
autopep8
autopep8 . --recursive --in-place --pep8-passes 2000 --verbose -a
which is from this page regarding autopep8: https://stackoverflow.com/questions/14328406/tool-to-convert-python-code-to-be-pep8-compliant
The -a flag was added to address some of the issues not originally fixed without its inclusion. Though not all of the files are 100% pep8 compliant, the code is much closer.
-a
The tool
autopep8
was applied to the repo, to clean up the style of the code. The exact command executed was:which is from this page regarding
autopep8
: https://stackoverflow.com/questions/14328406/tool-to-convert-python-code-to-be-pep8-compliantThe
-a
flag was added to address some of the issues not originally fixed without its inclusion. Though not all of the files are 100% pep8 compliant, the code is much closer.