mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
[fix] python 3.7: No name 'TypedDict' in module 'typing'
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
parent
048b1e220a
commit
0047f4226e
1 changed files with 3 additions and 1 deletions
|
@ -2,11 +2,13 @@
|
|||
# lint: pylint
|
||||
# pylint: disable=missing-module-docstring
|
||||
|
||||
from typing import Dict, TypedDict, List, Optional, Any
|
||||
import math
|
||||
import contextlib
|
||||
from timeit import default_timer
|
||||
|
||||
from typing import Dict, List, Optional, Any
|
||||
from typing_extensions import TypedDict
|
||||
|
||||
from searx.engines import engines
|
||||
from .models import Histogram, HistogramStorage, CounterStorage, VoidHistogram, VoidCounterStorage
|
||||
from .error_recorder import count_error, count_exception, errors_per_engines
|
||||
|
|
Loading…
Add table
Reference in a new issue