mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix typo
This commit is contained in:
parent
ebdd757c66
commit
e175121d0a
1 changed files with 2 additions and 2 deletions
|
|
@ -350,8 +350,8 @@ class DeliveryOptionsDialog(QtWidgets.QDialog):
|
|||
def _get_selected_repres(self):
|
||||
"""Returns list of representation names filtered from checkboxes."""
|
||||
selected_repres = []
|
||||
for repre_name, chckbox in self._representation_checkboxes.items():
|
||||
if chckbox.isChecked():
|
||||
for repre_name, checkbox in self._representation_checkboxes.items():
|
||||
if checkbox.isChecked():
|
||||
selected_repres.append(repre_name)
|
||||
|
||||
return selected_repres
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue