diff pytouhou/game/itemtype.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 b32cef75df59
children
line wrap: on
line diff
--- a/pytouhou/game/itemtype.py
+++ b/pytouhou/game/itemtype.py
@@ -1,4 +1,4 @@
-class ItemType(object):
+class ItemType:
     def __init__(self, anm, sprite_index, indicator_sprite_index):
         self.anm = anm
         self.sprite = Sprite()