diff options
| author | Noémi Ványi <sitbackandwait@gmail.com> | 2019-09-30 14:27:13 +0200 |
|---|---|---|
| committer | Noémi Ványi <sitbackandwait@gmail.com> | 2019-10-16 15:52:48 +0200 |
| commit | 5796dc60c9de4f8c54452bb0bd64ed993378e503 (patch) | |
| tree | 1e5b9d507acf2e7f433e539e256cf7d09132c82b /searx/utils.py | |
| parent | a6f20caf32af463b57a026ee7cb7ed6317db6b8b (diff) | |
fix pep 8 check
Diffstat (limited to 'searx/utils.py')
| -rw-r--r-- | searx/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/utils.py b/searx/utils.py index 4029cf2ae..e61a134f7 100644 --- a/searx/utils.py +++ b/searx/utils.py @@ -443,7 +443,7 @@ def get_engine_from_settings(name): if 'engines' not in settings: return {} - for engine in settings['engines']: + for engine in settings['engines']: if 'name' not in engine: continue if name == engine['name']: |