Skip to content

Commit 5633937

Browse files
remove if
1 parent 9f44168 commit 5633937

File tree

1 file changed

+11
-2
lines changed
  • demos/action_recognition_demo/python/action_recognition_demo

1 file changed

+11
-2
lines changed

demos/action_recognition_demo/python/action_recognition_demo/pipeline.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,17 @@ def start(self):
5757

5858
def join(self):
5959
self.input_queue.put(Signal.STOP)
60-
if self._thread is not None:
61-
self._thread.join()
60+
# print("\n")
61+
# print("\n")
62+
# print("thread")
63+
# print("\n")
64+
# print("\n")
65+
# print(self._thread)
66+
# print("\n")
67+
# print("\n")
68+
#if self._thread is not None:
69+
#print("not None")
70+
self._thread.join()
6271
self._thread = None
6372
self.working = False
6473

0 commit comments

Comments
 (0)