Skip to content

Commit

Permalink
fix(network): remove event parameter from lobby update handler [TTTK-52]
Browse files Browse the repository at this point in the history
  • Loading branch information
HOOK-Hawkins committed Mar 7, 2024
1 parent b42ce2c commit c2da43f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def _display_widgets(self,):
self.btnRdy2.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=2, row=10)
self.btnExit.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=5, row=1)

def _update_lobby(self, event):
def _update_lobby(self):
queue = self.master.in_queue.get()
print(queue)
for player in queue['player']:
Expand Down

0 comments on commit c2da43f

Please sign in to comment.