klen / pylama

Code audit tool for python.
MIT License
1.05k stars 99 forks source link

FN issue with W0612 #248

Open akashipov opened 10 months ago

akashipov commented 10 months ago
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