remove unnecessary assignment parenthesis
[youtube-dl] / youtube_dl / extractor / youtube.py
index e4eec7c30829a263230704ac73af1727c9c331d1..379559825bac8cae6e6245e8746181e631fdac2b 100644 (file)
@@ -85,7 +85,7 @@ class YoutubeBaseInfoExtractor(InfoExtractor):
 
         If _LOGIN_REQUIRED is set and no authentication was provided, an error is raised.
         """
-        (username, password) = self._get_login_info()
+        username, password = self._get_login_info()
         # No authentication to be performed
         if username is None:
             if self._LOGIN_REQUIRED and self._downloader.params.get('cookiefile') is None: