Remove debug prints

Co-authored-by: Roy Nieterau <roy_nieterau@hotmail.com>
This commit is contained in:
Jakub Trllo 2024-05-30 09:34:23 +02:00 committed by GitHub
parent 04339d9bc0
commit b93c0ace27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -207,9 +207,7 @@ class SelectVersionDialog(QtWidgets.QDialog):
def _on_confirm(self):
self._cancelled = False
index = self._versions_combobox.currentIndex()
print(index)
item_id = self._versions_combobox.itemData(index, ITEM_ID_ROLE)
print(item_id)
self._selected_item = self._versions_combobox.get_item_by_id(item_id)
self.accept()