pep8: Fix E203 whitespace before punctutation

This commit is contained in:
Brandon Heller
2012-11-13 14:39:31 -08:00
parent 1052f8a0d4
commit 0bd5c6519c
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ from time import time
def chunks( l, n ):
"Divide list l into chunks of size n - thanks Stackoverflow"
return [ l[ i : i + n ] for i in range( 0, len( l ), n ) ]
return [ l[ i: i + n ] for i in range( 0, len( l ), n ) ]
def startpings( host, targetips ):
"Tell host to repeatedly ping targets"