mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 14:22:37 +01:00
Removed double casting
This commit is contained in:
parent
6e34c4aed2
commit
78ce629ba6
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ def update_op_assets(
|
|||
if frames_duration:
|
||||
frame_out = frame_in + frames_duration - 1
|
||||
else:
|
||||
frame_out = int(project_doc["data"].get("frameEnd", frame_in))
|
||||
frame_out = project_doc["data"].get("frameEnd", frame_in)
|
||||
item_data["frameEnd"] = int(frame_out)
|
||||
# Fps, fallback to project's value or default value (25.0)
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue