Remove redundant list() inside sorted()

This commit is contained in:
Roy Nieterau 2022-02-02 14:24:42 +01:00
parent 5eca6a3538
commit c8410674c2

View file

@ -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