From 15c8aad1d899693eb9b0ef869757338503902a6e Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Tue, 17 Sep 2024 12:20:21 +0200 Subject: [PATCH] removed unused import --- client/ayon_core/plugins/load/export_otio.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/ayon_core/plugins/load/export_otio.py b/client/ayon_core/plugins/load/export_otio.py index 28b91aee86..e7a844aed3 100644 --- a/client/ayon_core/plugins/load/export_otio.py +++ b/client/ayon_core/plugins/load/export_otio.py @@ -1,6 +1,5 @@ import logging import os -import uuid from pathlib import Path from collections import defaultdict @@ -118,9 +117,8 @@ class ExportOTIOOptionsDialog(QtWidgets.QDialog): repre_name_buttons = [] for idx, name in enumerate(all_representation_names): repre_name_btn = QtWidgets.QPushButton(name, input_widget) - col = idx + 1 input_layout.addWidget( - repre_name_btn, row, col, + repre_name_btn, row, idx + 1, alignment=QtCore.Qt.AlignCenter ) repre_name_btn.clicked.connect(self._toggle_all)