remove unnecessary assignment parenthesis
[youtube-dl] / youtube_dl / extractor / hrti.py
index 6424d34ac4acc0f6c01205076cd0e6e25723fc22..9ba1aa7032eb932e325f9e1e40da1e4b583ce322 100644 (file)
@@ -66,7 +66,7 @@ class HRTiBaseIE(InfoExtractor):
         self._logout_url = modules['user']['resources']['logout']['uri']
 
     def _login(self):
-        (username, password) = self._get_login_info()
+        username, password = self._get_login_info()
         # TODO: figure out authentication with cookies
         if username is None or password is None:
             self.raise_login_required()