I’m trying to retrieve the first and last frame number of the rendering frame list. So far I’ve written this
frames = job.JobFrames
frames.sort(key=int)
But it throws and error saying:
My goal is to sort the frame list by numerical value, then get the first and last item in the list to know my first and last frame being rendered.