mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
Fix unpacking
This commit is contained in:
parent
eed763406e
commit
0e4a9e8911
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ class FoldersQtModel(QtGui.QStandardItemModel):
|
|||
Union[str, None]: Folder id or None if folder is not available.
|
||||
|
||||
"""
|
||||
for folder_id, item in self._items_by_id.values():
|
||||
for folder_id, item in self._items_by_id.items():
|
||||
if item.data(FOLDER_PATH_ROLE) == folder_path:
|
||||
return folder_id
|
||||
return None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue