Skip to content

Commit

Permalink
Fix linting issue
Browse files Browse the repository at this point in the history
Line too long
  • Loading branch information
n-jay committed Jan 19, 2024
1 parent 2009e12 commit 2ff33f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cuesubmit/cuesubmit/Submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ def buildBlenderCmd(layerData):
renderCommand += ' -f {}'.format(frameRange)
elif re.match(r'^\d+-\d+$', frameRange):
startFrame, endFrame = map(int, frameRange.split("-"))
renderCommand += ' -s {startFrame} -e {endFrame} -a'.format(startFrame=startFrame, endFrame=endFrame)
renderCommand += (' -s {startFrame} -e {endFrame} -a'
.format(startFrame=startFrame, endFrame=endFrame))
else:
raise ValueError('Invalid frameRange format: {}'.format(frameRange))
else:
Expand Down

0 comments on commit 2ff33f5

Please sign in to comment.