1
0
Fork 0

Fix deprecation.

This commit is contained in:
Irina Truong 2023-10-06 20:06:54 -07:00
parent a8e34be151
commit 24436bd640
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class CompletionRefresher:
args=(executor, special, callbacks, history, settings),
name="completion_refresh",
)
self._completer_thread.setDaemon(True)
self._completer_thread.daemon = True
self._completer_thread.start()
return [
(None, None, None, "Auto-completion refresh started in the background.")