Mercurial > touhou
comparison pytouhou/formats/music.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 | 61adb5453e46 |
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.start = 0 | 21 self.start = 0 |
22 self.end = 0 | 22 self.end = 0 |
23 | 23 |
24 | 24 |