Closed fgrosse closed 11 years ago
We need to agree on a indentation size per code level. I looked up that the standard indentation for python is 4 spaces We currently mix 4 and 2 spaces
I've did basically this:
#!/bin/bash PYTHON_FILES=`find . -name '*.py'` for FILE in $PYTHON_FILES; do python2.7 /usr/lib/python2.7/Tools/scripts/reindent.py $FILE done
We need to agree on a indentation size per code level. I looked up that the standard indentation for python is 4 spaces We currently mix 4 and 2 spaces