Open akashipov opened 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
x, _ = 5, 6
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