aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/finder/plugin/searcher/file/name.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/finder/plugin/searcher/file/name.py b/packages/finder/plugin/searcher/file/name.py
index 9f35ea5..571c0dc 100644
--- a/packages/finder/plugin/searcher/file/name.py
+++ b/packages/finder/plugin/searcher/file/name.py
@@ -51,10 +51,6 @@ class FinderPluginFileNameSearcher():
if cached:
if os.path.exists(self.cache) and os.path.isfile(self.cache):
with open(self.cache, 'r') as f:
- # Update the folder list in the background
- walker = asyncio.create_task(self.walker())
-
- # Meanwhile, return the items from cache
self.items = json.load(f)
return self.items