From 712f4ce53bbf03807051736c4d08042ff46a0a3d Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sun, 17 Nov 2013 19:15:33 -0600 Subject: use explicit import of Tkinter components --- pokemontools/map_editor.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3