We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4d0d84 commit 5e86b49Copy full SHA for 5e86b49
prompt_toolkit/buffer.py
@@ -9,7 +9,6 @@
9
import shutil
10
import subprocess
11
import tempfile
12
-from asyncio import Task
13
from enum import Enum
14
from functools import wraps
15
from typing import (
prompt_toolkit/history.py
@@ -130,7 +130,6 @@ def call_all_callbacks(item: str) -> None:
130
cb(item)
131
132
self._load_thread = Thread(target=self.history.load, args=(call_all_callbacks, ))
133
- print(self._load_thread.daemon)
134
self._load_thread.daemon = True
135
self._load_thread.start()
136
0 commit comments