Skip to content

Commit

Permalink
Add missing comma
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Targett <[email protected]>
  • Loading branch information
peter-targett committed Nov 9, 2024
1 parent 31fc81b commit e786c94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/py-opentimelineio/opentimelineio/schema/clip.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

@add_method(_otio.Clip)
def __str__(self):
return 'Clip("{}", {}, {}, {} {} {})'.format(
return 'Clip("{}", {}, {}, {}, {}, {})'.format(
self.name,
self.media_reference,
self.source_range,
Expand All @@ -24,8 +24,8 @@ def __repr__(self):
'name={}, '
'media_reference={}, '
'source_range={}, '
'metadata={}'
'effects={}'
'metadata={}, '
'effects={}, '
'markers={}'
')'.format(
repr(self.name),
Expand Down

0 comments on commit e786c94

Please sign in to comment.