fix remove round used in sector

This commit is contained in:
Maxime Réaux 2026-02-06 11:13:29 +01:00
parent 6cd3a060c7
commit 701f6b3292
7 changed files with 15 additions and 9 deletions

View file

@ -448,7 +448,7 @@ class View(QtWidgets.QMainWindow, Ui_MainWindow):
if action == edit_action and self.on_edit_item:
self.on_edit_item(ItemType.BATTLE, battle_id)
def show_round_details(self, *, index: int) -> None:
def show_round_details(self, *, index: int | None) -> None:
self.roundNb.setText(f"Round {index}")
def display_round_choices(self, participants: List[ChoiceDTO]) -> None: