Skip to content

Commit

Permalink
removed unnecessary Daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
ES-Alexander committed Dec 22, 2020
1 parent f8599ee commit d5c8b96
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pcv/vidIO.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,7 @@ def _initialise_writer(self, maxsize):
self._period = 1 / self.fps
self.latest = None
self._finished = Event()
self._looper = Thread(name='looper', target=self._write_loop,
daemon=True)
self._looper = Thread(name='looper', target=self._write_loop)
self._looper.start()

def _write_loop(self):
Expand Down

0 comments on commit d5c8b96

Please sign in to comment.