Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

Commit de00b44

Browse files
committed
Fix incorrect key usage
1 parent 0f71b93 commit de00b44

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

flox/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from .launcher import Launcher
1717
from .browser import Browser
1818
from .settings import Settings
19-
from .string_matcher import DEFAULT_QUERY_SEARCH_PRECISION
2019

2120
PLUGIN_MANIFEST = 'plugin.json'
2221
FLOW_LAUNCHER_DIR_NAME = "FlowLauncher"
@@ -242,7 +241,7 @@ def app_settings(self):
242241

243242
@property
244243
def query_search_precision(self):
245-
return self.app_settings.get('QuerySearchPrecision', DEFAULT_QUERY_SEARCH_PRECISION)
244+
return self.app_settings.get('QuerySearchPrecision', 'Regular')
246245

247246
@cached_property
248247
def user_keywords(self):

0 commit comments

Comments
 (0)