Mercurial > touhou
comparison pytouhou/formats/t6rp.py @ 305:5492472963b0
Minor cleanup
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Tue, 13 Mar 2012 18:45:43 +0100 |
parents | 88361534c77e |
children | 56523a16db1d |
comparison
equal
deleted
inserted
replaced
304:f3099ebf4f61 | 305:5492472963b0 |
---|---|
21 """ | 21 """ |
22 | 22 |
23 from struct import unpack | 23 from struct import unpack |
24 from io import BytesIO | 24 from io import BytesIO |
25 | 25 |
26 from pytouhou.utils.random import Random | 26 from pytouhou.utils.helpers import read_string, get_logger |
27 from pytouhou.utils.helpers import read_string | |
28 | |
29 from pytouhou.utils.helpers import get_logger | |
30 | 27 |
31 logger = get_logger(__name__) | 28 logger = get_logger(__name__) |
32 | 29 |
33 | 30 |
34 class Level(object): | 31 class Level(object): |