From 7f10fb40bd02b5048d2086b85e48282662a59be0 Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Sun, 4 Sep 2016 22:41:44 +0200 Subject: [PATCH] Fix flake8 warnings. --- tabakrolletjie/lights.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tabakrolletjie/lights.py b/tabakrolletjie/lights.py index ef84879..a22ea14 100644 --- a/tabakrolletjie/lights.py +++ b/tabakrolletjie/lights.py @@ -4,7 +4,6 @@ import pymunk import pymunk.pygame_util import pygame.draw -import pygame.locals as pgl from .constants import SCREEN_SIZE, LIGHT_CATEGORY @@ -93,9 +92,7 @@ class SpotLight(BaseLight): self.i = 0 def shapes_for_ray_polys(self, ray_polys): - x, y = self.position - return ray_polys #+ [ - # pymunk.Poly(self.body, [self.position, [x + 50, y], [x, y + 50]])] + return ray_polys def render(self, surface): subsurface = surface.copy() -- 2.34.1