diff gamelib/data.py @ 1:c90a6586cd66

PEP8-ify skellington (because)
author Neil Muller <drnlmuller@gmail.com>
date Sun, 06 May 2012 10:32:24 +0200
parents d0de8832774b
children 51ff46f42ed2
line wrap: on
line diff
--- a/gamelib/data.py	Sat May 05 13:52:29 2012 +0200
+++ b/gamelib/data.py	Sun May 06 10:32:24 2012 +0200
@@ -10,15 +10,16 @@
 data_py = os.path.abspath(os.path.dirname(__file__))
 data_dir = os.path.normpath(os.path.join(data_py, '..', 'data'))
 
+
 def filepath(filename):
     '''Determine the path to a file in the data directory.
     '''
     return os.path.join(data_dir, filename)
 
+
 def load(filename, mode='rb'):
     '''Open a file in the data directory.
 
     "mode" is passed as the second arg to open().
     '''
     return open(os.path.join(data_dir, filename), mode)
-