From 4dfc1de9c92a6607f137dc7f7a1333d155d88eb2 Mon Sep 17 00:00:00 2001 From: Gary Martin Date: Fri, 08 Oct 2010 01:23:16 +0000 Subject: Yet more comma space cleanups. --- (limited to 'physics.py') 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) -- cgit v0.9.1