contrib/check-code.py
branchstable
changeset 47856 142a76127e3a
parent 47635 752109dc2fb7
child 47979 b84fe613de33
--- a/contrib/check-code.py	Fri Aug 20 00:23:49 2021 +0530
+++ b/contrib/check-code.py	Thu Aug 19 18:04:14 2021 +0200
@@ -340,11 +340,6 @@
         (r'[^\n]\Z', "no trailing newline"),
         (r'(\S[ \t]+|^[ \t]+)\n', "trailing whitespace"),
         (
-            r'^\s+(self\.)?[A-Za-z][a-z0-9]+[A-Z]\w* = ',
-            "don't use camelcase in identifiers",
-            r'#.*camelcase-required',
-        ),
-        (
             r'^\s*(if|while|def|class|except|try)\s[^[\n]*:\s*[^\\n]#\s]+',
             "linebreak after :",
         ),