diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-10-10 09:16:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-10 09:16:00 +0200 |
| commit | f5755ba6b98856c27c0b77af1aafb704733b8128 (patch) | |
| tree | 259bf5b4d07cfa82914cbd572d799148687bba18 /searx/settings_defaults.py | |
| parent | 878d5d657c1064762da70b03b488517a2b82e759 (diff) | |
| parent | 5731b6b700f648bef71fc217a2ae3911d26790f4 (diff) | |
Merge pull request #319 from dalf/mod-plugins
plugins: refactor initialization
Diffstat (limited to 'searx/settings_defaults.py')
| -rw-r--r-- | searx/settings_defaults.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/settings_defaults.py b/searx/settings_defaults.py index 9284f3050..49462ccb4 100644 --- a/searx/settings_defaults.py +++ b/searx/settings_defaults.py @@ -200,8 +200,8 @@ SCHEMA = { 'networks': { }, }, - 'plugins': SettingsValue((None, list), None), - 'enabled_plugins': SettingsValue(list, []), + 'plugins': SettingsValue(list, []), + 'enabled_plugins': SettingsValue((None, list), None), 'checker': { 'off_when_debug': SettingsValue(bool, True), }, |