mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 13:52:15 +01:00
OP-4504 - weird unpacking not necessary
This commit is contained in:
parent
c9496bcfe3
commit
3fabd516ea
1 changed files with 1 additions and 1 deletions
|
|
@ -314,7 +314,7 @@ class IntegrateAsset(pyblish.api.InstancePlugin):
|
|||
("transfers", FileTransaction.MODE_COPY),
|
||||
("hardlinks", FileTransaction.MODE_HARDLINK)
|
||||
]
|
||||
for files_type, copy_mode in zip(*file_copy_modes): # unpack
|
||||
for files_type, copy_mode in file_copy_modes:
|
||||
for src, dst in instance.data.get(files_type, []):
|
||||
self._validate_path_in_project_roots(anatomy.all_root_paths(),
|
||||
dst)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue