From b93c0ace2771ae321baf4f42822a3cbb958ad2d1 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Thu, 30 May 2024 09:34:23 +0200 Subject: [PATCH] Remove debug prints Co-authored-by: Roy Nieterau --- client/ayon_core/tools/sceneinventory/select_version_dialog.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/ayon_core/tools/sceneinventory/select_version_dialog.py b/client/ayon_core/tools/sceneinventory/select_version_dialog.py index 421989338c..1945d71a6d 100644 --- a/client/ayon_core/tools/sceneinventory/select_version_dialog.py +++ b/client/ayon_core/tools/sceneinventory/select_version_dialog.py @@ -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()