frc1418 / 2017-robot

:robot: Team 1418's FRC robot code for the 2017 season
MIT License
6 stars 4 forks source link

Aggressively enforce PEP8 conformity to keep Travis happy #16

Closed ErikBoesen closed 7 years ago

ErikBoesen commented 7 years ago

I ran the code through a PEP8 checker and fixed most of its complaints. The main thing I ignored was keeping line length below 80, which is just annoying with little advantage.

Finally, an excuse for my code OCD.

ArchdukeTim commented 7 years ago

if you run autopep8 make sure you do autopep8 --in-line --ignore=E402,E501 -a -a so you get aggressive changes but ignore certain things (Import not at top and line too long)

ArchdukeTim commented 7 years ago

👍