[debug] add missing types
Browse files
src/utilities/type_hints.py
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
"""custom type hints"""
|
2 |
-
from typing import List
|
3 |
|
4 |
input_floatlist = List[float]
|
5 |
input_floatlist2 = List[input_floatlist]
|
|
|
6 |
ts_dict_str2 = dict[str, str]
|
|
|
|
1 |
"""custom type hints"""
|
2 |
+
from typing import List, Tuple
|
3 |
|
4 |
input_floatlist = List[float]
|
5 |
input_floatlist2 = List[input_floatlist]
|
6 |
+
input_float_tuples = List[Tuple[float, float]]
|
7 |
ts_dict_str2 = dict[str, str]
|
8 |
+
ts_dict_str3 = dict[str, str, any]
|