remove unnecessary assignment parenthesis

This commit is contained in:
Remita Amine 2018-05-26 16:12:44 +01:00
parent ec2f3d2800
commit 68217024e8
33 changed files with 32 additions and 42 deletions

View 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()