comparison 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
comparison
equal deleted inserted replaced
614:2cf518129725 615:d1f0bb0b7a17
16 16
17 from pytouhou.utils.helpers import get_logger 17 from pytouhou.utils.helpers import get_logger
18 18
19 logger = get_logger(__name__) 19 logger = get_logger(__name__)
20 20
21 class MSG(object): 21 class MSG:
22 _instructions = {0: ('', None), 22 _instructions = {0: ('', None),
23 1: ('hh', None), 23 1: ('hh', None),
24 2: ('hh', 'change_face'), 24 2: ('hh', 'change_face'),
25 3: ('hhs', 'display_dialog_line'), 25 3: ('hhs', 'display_dialog_line'),
26 4: ('I', 'pause'), 26 4: ('I', 'pause'),