diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-12 03:14:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-12 03:14:35 +0300 |
commit | 460822ea6cef840e0f478918547a806b231c3dc6 (patch) | |
tree | 729118f0273a182b62628aae87ae8c9fe9b5f1c2 /hercules/code/server/maps.py | |
parent | d3648ee52a4860111afe9049713d788f60e5b588 (diff) | |
download | evol-tools-460822ea6cef840e0f478918547a806b231c3dc6.tar.gz evol-tools-460822ea6cef840e0f478918547a806b231c3dc6.tar.bz2 evol-tools-460822ea6cef840e0f478918547a806b231c3dc6.tar.xz evol-tools-460822ea6cef840e0f478918547a806b231c3dc6.zip |
Fix different issues in tools found by pyflakes.
Diffstat (limited to 'hercules/code/server/maps.py')
-rw-r--r-- | hercules/code/server/maps.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hercules/code/server/maps.py b/hercules/code/server/maps.py index bdeb0f7..2ef0173 100644 --- a/hercules/code/server/maps.py +++ b/hercules/code/server/maps.py @@ -3,9 +3,11 @@ # Copyright (C) 2014 Evol Online # Author: Andrei Karas (4144) +import array +import struct import zlib -from code.fileutils import * +from code.fileutils import readMapName, readInt16, readInt32, readData, makeDir def listMapCache(f, mapsCount): print "Known maps:" |