How to handle the pylint message: ID:W0612 Unused Variable

时光总嘲笑我的痴心妄想 提交于 2019-12-21 06:50:41

问题


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?


回答1:


I believe that a, dummy = func() does the trick. Pylint allows (if I recall correctly) unused variables names that start with _ or dummy, e.g. dummy_index.

You can configure this by passing --dummy-variables-rgx option to Pylint. This specifies the regex that catches dummy variable names.

Note: Using _ can indeed cause confusion (props: Sven Marnach). There's a convention to use single underscore as prefix for semi-private identifiers, the double underscore is of course the prefix for special Python methods and on top of that there's a convention to aliasgettext() function as _() in programs that need localization as in _("text to translate").



来源:https://stackoverflow.com/questions/10107350/how-to-handle-the-pylint-message-idw0612-unused-variable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!