diff options
Diffstat (limited to 'searx/utils.py')
-rw-r--r-- | searx/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/utils.py b/searx/utils.py index 4910b1b85..effb9139a 100644 --- a/searx/utils.py +++ b/searx/utils.py @@ -273,7 +273,7 @@ def extract_url(xpath_results, base_url) -> str: raise ValueError('URL not found') -def dict_subset(dictionnary: MutableMapping, properties: Set[str]) -> Dict: +def dict_subset(dictionary: MutableMapping, properties: Set[str]) -> Dict: """Extract a subset of a dict Examples: @@ -282,7 +282,7 @@ def dict_subset(dictionnary: MutableMapping, properties: Set[str]) -> Dict: >>> >> dict_subset({'A': 'a', 'B': 'b', 'C': 'c'}, ['A', 'D']) {'A': 'a'} """ - return {k: dictionnary[k] for k in properties if k in dictionnary} + return {k: dictionary[k] for k in properties if k in dictionary} def get_torrent_size(filesize: str, filesize_multiplier: str) -> Optional[int]: |