isort
This commit is contained in:
@@ -1,7 +1,22 @@
|
||||
from tkinter import messagebox, Checkbutton, Entry, Frame, IntVar, Label, OptionMenu, Spinbox, StringVar, LEFT, RIGHT, X
|
||||
from tkinter import Button
|
||||
from tkinter import (
|
||||
LEFT,
|
||||
RIGHT,
|
||||
Button,
|
||||
Checkbutton,
|
||||
Entry,
|
||||
Frame,
|
||||
IntVar,
|
||||
Label,
|
||||
OptionMenu,
|
||||
Spinbox,
|
||||
StringVar,
|
||||
X,
|
||||
messagebox,
|
||||
)
|
||||
|
||||
from source.classes.Empty import Empty
|
||||
|
||||
|
||||
# Override Spinbox to include mousewheel support for changing value
|
||||
class mySpinbox(Spinbox):
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
||||
Reference in New Issue
Block a user