changeset 98:93256a0987a2

Fix newer pep8 continuation complaint
author Neil Muller <drnlmuller@gmail.com>
date Mon, 02 Sep 2013 11:50:04 +0200
parents c177cdc41477
children 67f8b06a433d
files nagslang/level.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/nagslang/level.py	Mon Sep 02 11:41:39 2013 +0200
+++ b/nagslang/level.py	Mon Sep 02 11:50:04 2013 +0200
@@ -135,7 +135,7 @@
                 pointlist = [self.point_to_pygame(p) for p in polygon]
                 # filled polygons
                 pygame.draw.polygon(surface, pygame.color.THECOLORS['white'],
-                        pointlist, 0)
+                                    pointlist, 0)
         self._surface.blit(surface, (0, 0), special_flags=pgl.BLEND_RGBA_MULT)
         self._exterior = True
 
@@ -154,6 +154,6 @@
         for x in range(x_count):
             for y in range(y_count):
                 tile_rect = pygame.rect.Rect(x * x_step, y * y_step,
-                        x_step, y_step)
+                                             x_step, y_step)
                 self._surface.blit(self._tile_image, tile_rect)
         return self._surface