diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-17 19:15:33 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-17 19:15:33 -0600 |
commit | 712f4ce53bbf03807051736c4d08042ff46a0a3d (patch) | |
tree | 9a43017818a3ca993bcc794f8ef9f922e145e649 /pokemontools/map_editor.py | |
parent | 98d335438a37772fef673d1f27f41b10e1bbd9cf (diff) |
use explicit import of Tkinter components
Diffstat (limited to 'pokemontools/map_editor.py')
-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 |