Skip to content

Commit

Permalink
Added daemon to InputDevice._pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
frastlin committed Dec 2, 2018
1 parent 06b43a1 commit 5a7075d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2530,7 +2530,7 @@ def _pipe(self):

self.__pipe, child_conn = Pipe(duplex=False)
self._listener = Process(target=target_function,
args=(child_conn,))
args=(child_conn,), daemon=True)
self._listener.start()
return self.__pipe

Expand Down

0 comments on commit 5a7075d

Please sign in to comment.