mirror of https://github.com/MISP/PyMISP
fix: Typing for Python < 3.10
parent
2b66a3eabd
commit
b11aa31048
|
@ -1,6 +1,6 @@
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from typing import TypeVar, Any, Mapping, Iterable, MutableMapping
|
from typing import TypeVar, Any, Mapping, Iterable, MutableMapping, Union
|
||||||
from datetime import date, datetime
|
from datetime import date, datetime
|
||||||
import csv
|
import csv
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
@ -57,7 +57,7 @@ except ImportError:
|
||||||
|
|
||||||
SearchType = TypeVar('SearchType', str, int)
|
SearchType = TypeVar('SearchType', str, int)
|
||||||
# str: string to search / list: values to search (OR) / dict: {'OR': [list], 'NOT': [list], 'AND': [list]}
|
# str: string to search / list: values to search (OR) / dict: {'OR': [list], 'NOT': [list], 'AND': [list]}
|
||||||
SearchParameterTypes = TypeVar('SearchParameterTypes', str, list[str | int], dict[str, str | int])
|
SearchParameterTypes = TypeVar('SearchParameterTypes', str, list[Union[str, int]], dict[str, Union[str, int]])
|
||||||
|
|
||||||
ToIDSType = TypeVar('ToIDSType', str, int, bool)
|
ToIDSType = TypeVar('ToIDSType', str, int, bool)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue