Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/nm/vulture_clean' into feat/nm/typing
Browse files Browse the repository at this point in the history
nmathieufact committed Mar 28, 2024
2 parents 82b3183 + 2d35f52 commit d3f0030
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bytetracker/basetrack.py
Original file line number Diff line number Diff line change
@@ -25,13 +25,13 @@ def next_id():
BaseTrack._count += 1
return BaseTrack._count

def activate(self):
def activate(self, *args):
raise NotImplementedError

def predict(self):
raise NotImplementedError

def update(self):
def update(self, *args, **kwargs):
raise NotImplementedError

def mark_lost(self):

0 comments on commit d3f0030

Please sign in to comment.