diff gamelib/scenes/bridge.py @ 476:c72946d3a59a

Some minor pylint driven style fixes
author Neil Muller <neil@dip.sun.ac.za>
date Sun, 29 Aug 2010 11:36:16 +0200
parents 4060e2dd4757
children a9925aaf5f61 9f488671c02e
line wrap: on
line diff
--- a/gamelib/scenes/bridge.py	Sun Aug 29 11:17:09 2010 +0200
+++ b/gamelib/scenes/bridge.py	Sun Aug 29 11:36:16 2010 +0200
@@ -184,7 +184,7 @@
 class StethoscopeThing(Thing):
     "Stehoscope on the doctor"
 
-    NAME ='bridge.stethoscope'
+    NAME = 'bridge.stethoscope'
 
     INTERACTS = {
         'stethoscope': InteractImage(650, 178, 'hanging_stethoscope.png'),
@@ -228,7 +228,7 @@
 class SuperconductorThing(Thing):
     "Superconductor from the massage chair."
 
-    NAME ='bridge.superconductor'
+    NAME = 'bridge.superconductor'
 
     INTERACTS = {
         'superconductor': InteractImage(158, 138, 'superconductor.png'),
@@ -286,7 +286,7 @@
 
 class LeftLights(BlinkingLights):
 
-    NAME ='bridge.lights.1'
+    NAME = 'bridge.lights.1'
 
     INTERACTS = {
         "lights": InteractAnimated(176, 337, ["bridge_lights_1_1.png", "bridge_lights_1_2.png", "bridge_lights_1_3.png", "bridge_lights_1_2.png"], 5)
@@ -296,7 +296,7 @@
 
 class RightLights(BlinkingLights):
 
-    NAME ='bridge.lights.2'
+    NAME = 'bridge.lights.2'
 
     INTERACTS = {
         "lights": InteractAnimated(559, 332, ["bridge_lights_2_1.png", "bridge_lights_2_2.png", "bridge_lights_2_3.png", "bridge_lights_2_2.png"], 5)