PEP8 cleanups.

This commit is contained in:
Roberto Rosario
2015-07-27 23:53:14 -04:00
parent 0b923a7a1c
commit 1e746c700a
101 changed files with 3244 additions and 892 deletions
+2 -1
View File
@@ -2,7 +2,8 @@ from __future__ import unicode_literals
def parse_range(astr):
# http://stackoverflow.com/questions/4248399/page-range-for-printing-algorithm
# http://stackoverflow.com/questions/4248399/
# page-range-for-printing-algorithm
result = set()
for part in astr.split(','):
x = part.split('-')