Skip to content

Commit

Permalink
use unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Dec 10, 2024
1 parent 38b6aea commit 9ea0c79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/ayon_core/tools/attribute_defs/files_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ def _on_rows_removed(self, parent_index, start_row, end_row):
for row in range(self._files_proxy_model.rowCount()):
index = self._files_proxy_model.index(row, 0)
item_id = index.data(ITEM_ID_ROLE)
available_item_ids.add(index.data(ITEM_ID_ROLE))
available_item_ids.add(item_id)

widget_ids = set(self._widgets_by_id.keys())
for item_id in available_item_ids:
Expand Down

0 comments on commit 9ea0c79

Please sign in to comment.