I'm updating some code to PEP 8 standard using pylint. Part of the code is throwing the W0612 unused variable error but it's because it's using a module that returns (x,y) for example when only x is needed in this particular case, this is what's done.
(var_1, var_2) = func()
def func():
a="a"
b="b"
return (a,b)
var_1 is then returned but var_2 is never used and therefore throws the error. How should I handle this? I'm thinking this
var = func()[0]
What is the best way to handle it?