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
@@ -252,7 +252,7 @@ class Graph( Frame ):
x1 = x0 + self.barwidth
y0 = self.gheight
y1 = ( 1 - percent ) * self.gheight
c.create_rectangle( x0 , y0, x1, y1, fill='green' )
c.create_rectangle( x0, y0, x1, y1, fill='green' )
self.xpos += 1
self.updateScrollRegions()
self.graph.xview( 'moveto', '1.0' )