Skip to content

Commit c9ba8e2

Browse files
committed
Bug fix in tracker.py [issue #48]
1 parent 3aa4de1 commit c9ba8e2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

motrackers/tracker.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,10 @@ def _get_tracks(tracks):
8383
"""
8484

8585
outputs = []
86-
for trackid, track in tracks.items():
87-
if not track.lost:
88-
outputs.append(track.output())
86+
for _, track in tracks.items():
87+
# if not track.lost:
88+
# outputs.append(track.output())
89+
outputs.append(track.output())
8990
return outputs
9091

9192
@staticmethod

0 commit comments

Comments
 (0)