Skip to content

Commit

Permalink
fix(#34): extra kwargs will not be used in diff
Browse files Browse the repository at this point in the history
  • Loading branch information
williamfzc committed Aug 27, 2019
1 parent d0e11f7 commit 689965d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stagesepx/cutter/cut_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def _diff(self, another: 'VideoCutResult', *args, **kwargs) -> typing.Dict:
for self_id, each_self_range in enumerate(self_stable):
temp = dict()
for another_id, another_self_range in enumerate(another_stable):
temp[another_id] = each_self_range.diff(another_self_range)
temp[another_id] = each_self_range.diff(another_self_range, *args, **kwargs)
result[self_id] = temp

return result

0 comments on commit 689965d

Please sign in to comment.