mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 14:22:37 +01:00
Remove redundant list() inside sorted()
This commit is contained in:
parent
5eca6a3538
commit
c8410674c2
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ class ValidateExpectedFiles(pyblish.api.InstancePlugin):
|
|||
# Update the representation expected files
|
||||
self.log.info("Update range from actual job range "
|
||||
"to frame list: {}".format(frame_list))
|
||||
repre["files"] = sorted(list(real_expected_rendered))
|
||||
repre["files"] = sorted(real_expected_rendered)
|
||||
|
||||
# Update the expected files
|
||||
expected_files = job_expected_files
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue