i had gotten rid of all of the import * statements, but there is one file which this isn't possible without more discretion and i don't know enough about tkinter to try to make the choice.
in src/categories/init.py, there is from tkinter import and from tkinter.ttk import . there are three Label objects that are from both of the modules in the Category class method inter_gui below. These Label objects are currently being inherited from tkinter.ttk because that is latest import in the file. so, if what's working now works, we get rid of from tkinter import *. my assumption would to be to do this.
edit: this issue is now on the main branch
i had gotten rid of all of the
import *
statements, but there is one file which this isn't possible without more discretion and i don't know enough about tkinter to try to make the choice.in
src/categories/init.py
, there isfrom tkinter import
andfrom tkinter.ttk import
. there are threeLabel
objects that are from both of the modules in theCategory
class methodinter_gui
below. TheseLabel
objects are currently being inherited fromtkinter.ttk
because that is latest import in the file. so, if what's working now works, we get rid offrom tkinter import *
. my assumption would to be to do this.