diff --git a/utils/make_cursor_gui.py b/utils/make_cursor_gui.py index 23fef6ab1bd4a96d568bfff92ecf8eb9b0bf8c41..523a186e35778afd891e2c5c2be1a3deddb72d96 100755 --- a/utils/make_cursor_gui.py +++ b/utils/make_cursor_gui.py @@ -1,9 +1,21 @@ -#!/usr/bin/python +#!/usr/bin/python3 # Created by Robert Wenzlaff (Det. Thorn). # Oct. 30, 2003 -from tkinter import * +from tkinter import ( + Button, + Canvas, + Checkbutton, + END, + Frame, + IntVar, + Label, + RIDGE, + Text, + Tk, + ) + color = ("black", "white", "darkgreen", "gray")