summaryrefslogtreecommitdiff
path: root/searx/engines/duckduckgo_weather.py
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2022-07-24 09:32:05 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2023-04-07 11:03:25 +0200
commit2ffd446e5c0be30717d9ff112d34ef606f08fcdd (patch)
tree9a7f85ef11ca13a1092c75800f6a77df05357b62 /searx/engines/duckduckgo_weather.py
parentf46d0584ef17a83e2c1089a11aa037ebb098ba57 (diff)
downloadsearxng-2ffd446e5c0be30717d9ff112d34ef606f08fcdd.tar.gz
searxng-2ffd446e5c0be30717d9ff112d34ef606f08fcdd.zip
[mod] clarify the difference of the default category and subgrouping
This PR does no functional change it is just an attempt to make more clear in the code, what a default category is and what a subcategory is. The previous name 'others' leads to confusion with the **category 'other'**. If a engine is not assigned to a category, the default is assigned:: DEFAULT_CATEGORY = 'other' If an engine has only one category and this category is shown as tab in the user interface, this engine has no further subgrouping:: NO_SUBGROUPING = 'without further subgrouping' Related: - https://github.com/searxng/searxng/issues/1604 - https://github.com/searxng/searxng/pull/1545 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/engines/duckduckgo_weather.py')
-rw-r--r--searx/engines/duckduckgo_weather.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/duckduckgo_weather.py b/searx/engines/duckduckgo_weather.py
index 4f0ce1b49..f239ce8f9 100644
--- a/searx/engines/duckduckgo_weather.py
+++ b/searx/engines/duckduckgo_weather.py
@@ -36,7 +36,7 @@ about = {
send_accept_language_header = True
# engine dependent config
-categories = ["others"]
+categories = ["weather"]
URL = "https://duckduckgo.com/js/spice/forecast/{query}/{lang}"