fix(pre_commit): 🎨 auto format pre-commit hooks

This commit is contained in:
pre-commit-ci[bot] 2023-09-21 12:36:21 +00:00
parent e5c4d8e3b9
commit 484e53324e
1 changed files with 6 additions and 4 deletions

View File

@ -30,11 +30,13 @@ def process_video(
detections = tracker.update_with_detections(detections)
annotated_frame = box_annotator.annotate(
scene=frame.copy(), detections=detections)
scene=frame.copy(), detections=detections
)
annotated_labeled_frame = label_annotator.annotate(
scene=annotated_frame, detections=detections)
scene=annotated_frame, detections=detections
)
sink.write_frame(frame=annotated_labeled_frame)