1
0
forked from VimPlug/jedi

Rename variable to placate mypy

This commit is contained in:
Peter Law
2020-04-24 12:45:05 +01:00
parent 343a10d491
commit df951733cd

View File

@@ -75,9 +75,9 @@ def list_tuple_t_elipsis_to_tuple_list_t(the_list: List[Tuple[T, ...]]) -> Tuple
return tuple(list(x) for x in the_list)
list_of_int_tuples = [tuple(list_of_ints)] # type: List[Tuple[int, ...]]
list_of_int_tuple_elipsis = [tuple(list_of_ints)] # type: List[Tuple[int, ...]]
for b in list_tuple_t_elipsis_to_tuple_list_t(list_of_int_tuples):
for b in list_tuple_t_elipsis_to_tuple_list_t(list_of_int_tuple_elipsis):
#? int()
b[0]