Apply suggestions from code review

Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
This commit is contained in:
Robin De Lillo 2024-09-18 08:14:59 -04:00 committed by GitHub
parent d899f11b67
commit ac226a360a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -256,8 +256,8 @@ def get_media_range_with_retimes(otio_clip, handle_start, handle_end):
source_in = source_range.start_time.value
media_in_trimmed = (source_in + offset_in)
media_out_trimmed = ( media_in_trimmed + (
media_in_trimmed = source_in + offset_in
media_out_trimmed = (media_in_trimmed + (
((source_range.duration.value - 1) * abs(
time_scalar)) + offset_out))