What's the proper type hints in PEP8 to type hint variable defined within the for loop or in nested for loop.
a: int
for a in iterable_A:
for b in iterable_B:
pass
what would be the proper PEP8 standard type hints use for b?
I've tried both seem to be working.
a: int
for a in iterable_A:
b: int
for b in iterable_B:
pass
OR in nested for loop.
a: int
b: int
for a in iterable_A:
for b in iterable_B:
pass