You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the code above a1 and b1 are not reported as unused, whereas a2 and b2 are correctly reported as unused.
Local variable `t1` is assigned to but never used (F841) [Ln 2, Col 5]
Local variable `t2` is assigned to but never used (F841) [Ln 5, Col 5]
Local variable `a2` is assigned to but never used (F841) [Ln 6, Col 5]
Local variable `b2` is assigned to but never used (F841) [Ln 6, Col 9]
Version
v0.11.0 (playground)
The text was updated successfully, but these errors were encountered:
Summary
F841 is not reporting as unused unpacked values from function calls.
Below is some code showcasing the issue (playground):
In the code above
a1
andb1
are not reported as unused, whereasa2
andb2
are correctly reported as unused.Version
v0.11.0 (playground)
The text was updated successfully, but these errors were encountered: