From: Simon Cross Date: Sat, 17 May 2014 23:18:36 +0000 (+0200) Subject: PEP8. X-Git-Tag: 0.1~8^2~2 X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=commitdiff_plain;h=de03276f181428cb1c7258428add770dc4c0ecfd PEP8. --- diff --git a/naja/scenes/dummygame.py b/naja/scenes/dummygame.py index 077c07b..f77fff9 100644 --- a/naja/scenes/dummygame.py +++ b/naja/scenes/dummygame.py @@ -5,14 +5,12 @@ Dummy scene that overlays a static rendering of a a game scene import pygame.locals as pgl import pygame -from naja.constants import KEYS, PALETTE, SCREEN +from naja.constants import SCREEN, KEYS from naja.events import SceneChangeEvent, LoadGameEvent -from naja.sound import sound from naja.scenes.scene import Scene from naja.scenes.game import GameScene from naja.gamestate import GameState from naja.widgets.image_box import PreRenderedImageBox -from naja.widgets.text import TextWidget, TextBoxWidget class DummyGameScene(Scene): @@ -38,4 +36,3 @@ class DummyGameScene(Scene): LoadGameEvent.post(None) SceneChangeEvent.post(MenuScene) return -