Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • pycqa/pep8-naming
1 result
Show changes
Commits on Source (2)
Loading
Loading
@@ -240,7 +240,7 @@ class FunctionNameCheck(BaseASTCheck):
prevailing style (e.g. threading.py), to retain backwards compatibility.
"""
check = LOWERCASE_REGEX.match
N802 = "function name '{name}' should be lowercase xxx"
N802 = "function name '{name}' should be lowercase"
N807 = "function name '{name}' should not start or end with '__'"
 
def visit_functiondef(self, node, parents, ignore=None):
Loading
Loading