Pycharm 警告去除

pycharm去除下面三种警告提示:

function name should be lowercase 
argument name should be lowercase 
variable in function should be lowercase

步骤:
File - Settings - Editor - Inspections - Python - PEP 8 naming convention violation

在右下角"Ignored errors"中,点击添加下面三个,apply,ok即可:
N802
N803
N806

你可能感兴趣的:(pycharm)