diff options
-rw-r--r-- | pokemontools/map_editor.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/pokemontools/map_editor.py b/pokemontools/map_editor.py index 44b2d98..77ecd85 100644 --- a/pokemontools/map_editor.py +++ b/pokemontools/map_editor.py @@ -1,6 +1,18 @@ import os -from Tkinter import * +from Tkinter import ( + Tk, + Button, + Canvas, + Scrollbar, + VERTICAL, + HORIZONTAL, + RIGHT, + LEFT, + Y, + X, +) + import ttk from ttk import Frame, Style import PIL |