diff pytouhou/game/background.py @ 615:d1f0bb0b7a17

Don’t inherit explicitely from object, we are not on Python 2.7 anymore. :)
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 28 Mar 2015 21:40:51 +0100
parents e35bef07290d
children
line wrap: on
line diff
--- a/pytouhou/game/background.py
+++ b/pytouhou/game/background.py
@@ -18,7 +18,7 @@ from pytouhou.vm import ANMRunner
 from pytouhou.game.sprite import Sprite
 
 
-class Background(object):
+class Background:
     def __init__(self, stage, anm):
         self.stage = stage
         self.anm = anm