aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/prompt-toolkit/py3/prompt_toolkit/history.py
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-02-12 14:35:15 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-02-12 14:35:15 +0300
commit46a8b83899dd321edf511c0483f9c479ce2c1bc4 (patch)
treee5debc03beecbd10e7d1bf78c889c8d54e8c4523 /contrib/python/prompt-toolkit/py3/prompt_toolkit/history.py
parentb56bbcc9f63bf31991a8aa118555ce0c12875a74 (diff)
downloadydb-46a8b83899dd321edf511c0483f9c479ce2c1bc4.tar.gz
intermediate changes
ref:7c971b97c72bbbcbf889118d39017bd14f99365a
Diffstat (limited to 'contrib/python/prompt-toolkit/py3/prompt_toolkit/history.py')
-rw-r--r--contrib/python/prompt-toolkit/py3/prompt_toolkit/history.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/contrib/python/prompt-toolkit/py3/prompt_toolkit/history.py b/contrib/python/prompt-toolkit/py3/prompt_toolkit/history.py
index d6bc3e6779..987d7175de 100644
--- a/contrib/python/prompt-toolkit/py3/prompt_toolkit/history.py
+++ b/contrib/python/prompt-toolkit/py3/prompt_toolkit/history.py
@@ -211,7 +211,7 @@ class ThreadedHistory(History):
self.history.store_string(string)
def __repr__(self) -> str:
- return "ThreadedHistory(%r)" % (self.history,)
+ return f"ThreadedHistory({self.history!r})"
class InMemoryHistory(History):
@@ -231,8 +231,7 @@ class InMemoryHistory(History):
self._storage = list(history_strings)
def load_history_strings(self) -> Iterable[str]:
- for item in self._storage[::-1]:
- yield item
+ yield from self._storage[::-1]
def store_string(self, string: str) -> None:
self._storage.append(string)
@@ -261,7 +260,7 @@ class FileHistory(History):
def __init__(self, filename: str) -> None:
self.filename = filename
- super(FileHistory, self).__init__()
+ super().__init__()
def load_history_strings(self) -> Iterable[str]:
strings: List[str] = []