Small code format

This commit is contained in:
Oliver Hartmann 2021-03-20 21:32:18 +01:00
parent a1636f8f70
commit ba402c3ef7

View File

@ -36,7 +36,7 @@ class Gui(Tk):
Button(tab, text='Ty', command=lambda mess=message: self.ty_callback(message, tab)).pack(anchor='e', side='left')
Button(tab, text='Wait', command=lambda mess=message: self.wait_callback(message, tab)).pack(anchor='e', side='left')
self.tab_control.add(tab, text=message.user)
def start_move(self, event):
self.x = event.x
self.y = event.y
@ -64,7 +64,6 @@ class Gui(Tk):
def trade_callback(self, message: Message, tab: ttk.Frame):
sendkeys.trade(message=message)
def wait_callback(self, message: Message, tab: ttk.Frame):
sendkeys.send_to_format(type='wait', message=message)