comparison pytouhou/formats/msg.py @ 203:df8b2ab54639

Make pylint slightly happier (and code analysis easier)
author Thibaut Girka <thib@sitedethib.com>
date Mon, 31 Oct 2011 19:29:47 +0100
parents d3005ebe797a
children 4838e9bab0f9
comparison
equal deleted inserted replaced
202:d348892ef012 203:df8b2ab54639
10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of 10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ## GNU General Public License for more details. 12 ## GNU General Public License for more details.
13 ## 13 ##
14 14
15 import struct
16 from struct import pack, unpack, calcsize 15 from struct import pack, unpack, calcsize
17 from pytouhou.utils.helpers import read_string 16 from pytouhou.utils.helpers import read_string
18 17
19 from pytouhou.utils.helpers import get_logger 18 from pytouhou.utils.helpers import get_logger
20 19