klen / pylama

Code audit tool for python.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FN issue with W0612

akashipov opened this issue · comments

def f():
            return 5, 6

x, _ = f()

in this case there is no warning about W0612 problem
if we use just it is ok.
x, _ = 5, 6
Could you fix it?
pylama==8.4.1