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

Commit

Permalink
Fix incorrect key usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Garulf committed Apr 8, 2023
1 parent 0f71b93 commit de00b44
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions flox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
from .launcher import Launcher
from .browser import Browser
from .settings import Settings
from .string_matcher import DEFAULT_QUERY_SEARCH_PRECISION

PLUGIN_MANIFEST = 'plugin.json'
FLOW_LAUNCHER_DIR_NAME = "FlowLauncher"
Expand Down Expand Up @@ -242,7 +241,7 @@ def app_settings(self):

@property
def query_search_precision(self):
return self.app_settings.get('QuerySearchPrecision', DEFAULT_QUERY_SEARCH_PRECISION)
return self.app_settings.get('QuerySearchPrecision', 'Regular')

@cached_property
def user_keywords(self):
Expand Down

0 comments on commit de00b44

Please sign in to comment.