summaryrefslogtreecommitdiff
path: root/alot/buffers
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-04-19 17:35:09 +0200
committerAnton Khirnov <anton@khirnov.net>2020-04-19 17:35:09 +0200
commit994a860af8607aa6fe2a11829fc082ec1b746ca3 (patch)
tree9ff40d3aec0240cf8a2e8a2289e86b0c84ce6985 /alot/buffers
parentb03af5b8640ae691e89d3ae42701c95100c8a336 (diff)
buffers/search: drop unused var
Diffstat (limited to 'alot/buffers')
-rw-r--r--alot/buffers/search.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/alot/buffers/search.py b/alot/buffers/search.py
index 8e58de8a..9ef310d9 100644
--- a/alot/buffers/search.py
+++ b/alot/buffers/search.py
@@ -26,7 +26,6 @@ class SearchBuffer(Buffer):
self.sort_order = sort_order or default_order
self.result_count = 0
self.thread_count = 0
- self.isinitialized = False
self.proc = None # process that fills our pipe
self.rebuild()
Buffer.__init__(self, ui, self.body)
@@ -58,7 +57,6 @@ class SearchBuffer(Buffer):
self.proc.terminate()
def rebuild(self, reverse=False):
- self.isinitialized = True
self.reversed = reverse
self.kill_filler_process()