contrib/check-code.py
changeset 49570 3a2b6158374a
parent 48946 642e31cb55f0
child 50725 7e5be4a7cda7
--- a/contrib/check-code.py	Wed Oct 19 12:38:06 2022 +0200
+++ b/contrib/check-code.py	Sat Nov 05 00:38:02 2022 -0400
@@ -372,10 +372,6 @@
         ),
         (r'[^^+=*/!<>&| %-](\s=|=\s)[^= ]', "wrong whitespace around ="),
         (
-            r'\([^()]*( =[^=]|[^<>!=]= )',
-            "no whitespace around = for named parameters",
-        ),
-        (
             r'raise [^,(]+, (\([^\)]+\)|[^,\(\)]+)$',
             "don't use old-style two-argument raise, use Exception(message)",
         ),