fix OTIO_EPSILON usage

This commit is contained in:
Jakub Trllo 2025-08-01 14:42:16 +02:00
parent 9f456f7cb8
commit 798b281e67
2 changed files with 2 additions and 2 deletions

View file

@ -177,7 +177,7 @@ class ExtractOtioAudioTracks(pyblish.api.ContextPlugin):
# Avoid rounding issue on media available range.
if clip_start.almost_equal(
conformed_av_start,
editorial.OTIO_EPSILON
OTIO_EPSILON
):
conformed_av_start = clip_start

View file

@ -406,7 +406,7 @@ class ExtractOTIOReview(
# Avoid rounding issue on media available range.
if end_point.almost_equal(
avl_end_point,
editorial.OTIO_EPSILON
OTIO_EPSILON
):
avl_end_point = end_point