Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/physics.py
diff options
context:
space:
mode:
Diffstat (limited to 'physics.py')
-rw-r--r--physics.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/physics.py b/physics.py
index 3dd5060..658f0b7 100644
--- a/physics.py
+++ b/physics.py
@@ -42,7 +42,7 @@ from helpers import *
import gtk
class PhysicsGame:
- def __init__(self,screen):
+ def __init__(self, screen):
self.screen = screen
# Get everything set up
self.clock = pygame.time.Clock()
@@ -119,7 +119,7 @@ def main():
tabheight = 45
pygame.init()
pygame.display.init()
- x,y = pygame.display.list_modes()[0]
+ x, y = pygame.display.list_modes()[0]
screen = pygame.display.set_mode((x, y - toolbarheight - tabheight))
# Create an instance of the game
game = PhysicsGame(screen)