mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +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):
|
def _get_selected_repres(self):
|
||||||
"""Returns list of representation names filtered from checkboxes."""
|
"""Returns list of representation names filtered from checkboxes."""
|
||||||
selected_repres = []
|
selected_repres = []
|
||||||
for repre_name, chckbox in self._representation_checkboxes.items():
|
for repre_name, checkbox in self._representation_checkboxes.items():
|
||||||
if chckbox.isChecked():
|
if checkbox.isChecked():
|
||||||
selected_repres.append(repre_name)
|
selected_repres.append(repre_name)
|
||||||
|
|
||||||
return selected_repres
|
return selected_repres
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue