diff pytouhou/formats/msg.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 5492472963b0
children d18c0bf11138
line wrap: on
line diff
--- a/pytouhou/formats/msg.py
+++ b/pytouhou/formats/msg.py
@@ -18,7 +18,7 @@ from pytouhou.utils.helpers import get_l
 
 logger = get_logger(__name__)
 
-class MSG(object):
+class MSG:
     _instructions = {0: ('', None),
                      1: ('hh', None),
                      2: ('hh', 'change_face'),