Skip to content

Commit

Permalink
Merge pull request #92 from imadtoubal/master
Browse files Browse the repository at this point in the history
fix to issue #91: Variable self._runtime referenced before initialization in vot/tracker/__init__.py
  • Loading branch information
lukacu authored May 26, 2023
2 parents 410c41f + d9002db commit 73dcbba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vot/tracker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ def __init__(self, runtime: TrackerRuntime):
"""

super().__init__(runtime.tracker)
if self._runtime.multiobject:
if runtime.multiobject:
self._runtime = runtime
else:
self._runtime = [runtime]
Expand Down

0 comments on commit 73dcbba

Please sign in to comment.