fixes issue #1522237, bad init check in _threading_local
diff --git a/Lib/_threading_local.py b/Lib/_threading_local.py
index 243d84e..e953597 100644
--- a/Lib/_threading_local.py
+++ b/Lib/_threading_local.py
@@ -155,7 +155,7 @@
         object.__setattr__(self, '_local__args', (args, kw))
         object.__setattr__(self, '_local__lock', RLock())
 
-        if args or kw and (cls.__init__ is object.__init__):
+        if (args or kw) and (cls.__init__ is object.__init__):
             raise TypeError("Initialization arguments are not supported")
 
         # We need to create the thread dict in anticipation of