comparison pytouhou/formats/fmt.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 d8aab27a2ab2
children
comparison
equal deleted inserted replaced
614:2cf518129725 615:d1f0bb0b7a17
14 14
15 15
16 from struct import unpack 16 from struct import unpack
17 17
18 18
19 class Track(object): 19 class Track:
20 def __init__(self): 20 def __init__(self):
21 self.name = '' 21 self.name = ''
22 22
23 # loop info 23 # loop info
24 self.intro = 0 24 self.intro = 0