Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-nn committed Dec 10, 2024
1 parent 47a9d03 commit 94b51cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion degirum_tools/video_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def custom_serializer(obj):

# save the clip in a separate thread

filename = f"{context._file_prefix}{'' if context._file_prefix.endswith('/') else '_' }{context._start_frame:08d}"
filename = f"{context._file_prefix}{'' if context._file_prefix.endswith('/') else '_'}{context._start_frame:08d}"
threading.Thread(
target=save, args=(context, filename), name=self._thread_name
).start()
Expand Down

0 comments on commit 94b51cf

Please sign in to comment.