remove unnecessary assignment parenthesis
[youtube-dl] / youtube_dl / extractor / tennistv.py
index 0c6f70784c00cd880fda85d4d830ab478ed77eeb..a586f30ad55a2e060257d86593c793471246d9fc 100644 (file)
@@ -32,7 +32,7 @@ class TennisTVIE(InfoExtractor):
     _NETRC_MACHINE = 'tennistv'
 
     def _login(self):
-        (username, password) = self._get_login_info()
+        username, password = self._get_login_info()
         if not username or not password:
             raise ExtractorError('No login info available, needed for using %s.' % self.IE_NAME, expected=True)