File tree Expand file tree Collapse file tree
src/py-opentimelineio/opentimelineio/algorithms Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def timeline_trimmed_to_range(in_timeline, trim_range):
1919 .. note:: the timeline is never expanded, only shortened.
2020
2121 Please note that you could do nearly the same thing non-destructively by
22- just setting the :py:class:`.Track`\' s source_range but sometimes you want to
22+ just setting the :py:class:`opentimelineio.schema .Track`\' s source_range but sometimes you want to
2323 really cut away the stuff outside and that's what this function is meant for.
2424
2525 :param Timeline in_timeline: Timeline to trim
Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ def track_trimmed_to_range(in_track, trim_range):
2121 .. note:: The track is never expanded, only shortened.
2222
2323 Please note that you could do nearly the same thing non-destructively by
24- just setting the :py:class:`.Track`\' s source_range but sometimes you want
24+ just setting the :py:class:`opentimelineio.schema .Track`\' s source_range but sometimes you want
2525 to really cut away the stuff outside and that's what this function is meant for.
2626
27- :param Track in_track: Track to trim
27+ :param opentimelineio.schema. Track in_track: Track to trim
2828 :param TimeRange trim_range:
2929 :returns: New trimmed track
30- :rtype: Track
30+ :rtype: opentimelineio.schema. Track
3131 """
3232 new_track = copy .deepcopy (in_track )
3333
@@ -94,9 +94,9 @@ def track_with_expanded_transitions(in_track):
9494
9595 .. note:: The items used in a transition are encapsulated in tuples.
9696
97- :param Track in_track: Track to expand
97+ :param opentimelineio.schema. Track in_track: Track to expand
9898 :returns: Track
99- :rtype: list[Track]
99+ :rtype: list[opentimelineio.schema. Track]
100100 """
101101
102102 result_track = []
You can’t perform that action at this time.
0 commit comments