remove unnecessary assignment parenthesis
[youtube-dl] / youtube_dl / extractor / gdcvault.py
index f71d9092e5371d5d2c143058ded24cb5f4ca1958..8806dc48a945e7dea5760498f5b2ef570fb419a4 100644 (file)
@@ -91,7 +91,7 @@ class GDCVaultIE(InfoExtractor):
     ]
 
     def _login(self, webpage_url, display_id):
-        (username, password) = self._get_login_info()
+        username, password = self._get_login_info()
         if username is None or password is None:
             self.report_warning('It looks like ' + webpage_url + ' requires a login. Try specifying a username and password and try again.')
             return None