HERA-Team / RTP

The HERA Real-Time Pipeline for data processing.
2 stars 2 forks source link

Apply autopep8 to directory #11

Closed plaplant closed 7 years ago

plaplant commented 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 . --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.