diff options
Diffstat (limited to 'pokemontools/gfx.py')
-rw-r--r-- | pokemontools/gfx.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/pokemontools/gfx.py b/pokemontools/gfx.py index cedbced..c7c6bec 100644 --- a/pokemontools/gfx.py +++ b/pokemontools/gfx.py @@ -12,18 +12,6 @@ import trainers if __name__ != "__main__": rom = crystal.load_rom() -def mkdir_p(path): - """ - Make a directory at a given path. - """ - try: - os.makedirs(path) - except OSError as exc: # Python >2.5 - if exc.errno == errno.EEXIST: - pass - else: raise - - def hex_dump(input, debug=True): """ Display hex dump in rows of 16 bytes. |