Skip to content

Commit d531ed0

Browse files
committed
Fixed sphinx documentation warnings
Signed-off-by: Eric Reinecke <ereinecke@netflix.com>
1 parent c6d9646 commit d531ed0

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/py-opentimelineio/opentimelineio/algorithms/timeline_algo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/py-opentimelineio/opentimelineio/algorithms/track_algo.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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 = []

0 commit comments

Comments
 (0)