Skip to content

Commit

Permalink
style: [CI] format
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions Bot committed Nov 6, 2023
1 parent 5397b0a commit 38d4dfd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spatialyze/video_processor/stages/tracking_2d/strongsort.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import time
from pathlib import Path
from typing import Literal
import time

import torch

Expand Down Expand Up @@ -43,7 +43,7 @@ def _run(self, payload: "Payload"):

names = detections[0][1]
assert names is not None

frame_process_time = []

for (dets, _, dids), ts in StrongSORT.tqdm(zip(detections, trackings)):
Expand All @@ -69,7 +69,7 @@ def _run(self, payload: "Payload"):
for before, after in zip(trajectory[:-1], trajectory[1:]):
before.next = after
after.prev = before

self._benchmark.append(
{
"name": payload.video.videofile,
Expand Down

0 comments on commit 38d4dfd

Please sign in to comment.