Seems like the combination of multiple assignment and unpacking assignment confuses the parser or symbol tracker. Examples like this code: ``` a = b, _ = [0, 1] print(b) ``` are giving me `Undefined variable: 'b'`
Seems like the combination of multiple assignment and unpacking assignment confuses the parser or symbol tracker. Examples like this code:
are giving me
Undefined variable: 'b'