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/convert_mapcache_to_tmx.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/convert_mapcache_to_tmx.py')
-rwxr-xr-x | hercules/convert_mapcache_to_tmx.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hercules/convert_mapcache_to_tmx.py b/hercules/convert_mapcache_to_tmx.py index bcc50ac..e6e6bc9 100755 --- a/hercules/convert_mapcache_to_tmx.py +++ b/hercules/convert_mapcache_to_tmx.py @@ -6,8 +6,8 @@ import os -from code.fileutils import * -from code.servertoclient.maps import * +from code.fileutils import readInt32, readInt16 +from code.servertoclient.maps import covertToTmx def runFunction(path): with open(path, "rb") as f: |