我的代码中有使用logging
模块的这一行。另外,我在logging-format-style=new
中设置了.pylintrc
,我认为这是为较新的format
选项所提供的。
logger.error("Unable to read file {}".format(file))
代码运行正常,但抱怨此消息
Use { formatting in logging functionspylint(logging-format-interpolation)
我可以怎样使PyLint开心?我知道我可以忽略此警告,但希望知道什么是最好的出路。
我的环境是带有pylint 5.3.1的Python v3.7.1