Skip to content

Commit 5e86b49

Browse files
Removed unused import and print.
1 parent b4d0d84 commit 5e86b49

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

prompt_toolkit/buffer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import shutil
1010
import subprocess
1111
import tempfile
12-
from asyncio import Task
1312
from enum import Enum
1413
from functools import wraps
1514
from typing import (

prompt_toolkit/history.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ def call_all_callbacks(item: str) -> None:
130130
cb(item)
131131

132132
self._load_thread = Thread(target=self.history.load, args=(call_all_callbacks, ))
133-
print(self._load_thread.daemon)
134133
self._load_thread.daemon = True
135134
self._load_thread.start()
136135

0 commit comments

Comments
 (0)