aletrn commited on
Commit
6978dd2
·
1 Parent(s): fa76f5f

[debug] add missing types

Browse files
Files changed (1) hide show
  1. src/utilities/type_hints.py +3 -1
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]