remove unnecessary assignment parenthesis
This commit is contained in:
parent
ec2f3d2800
commit
68217024e8
33 changed files with 32 additions and 42 deletions
|
@ -35,7 +35,7 @@ class CuriosityStreamBaseIE(InfoExtractor):
|
|||
return result['data']
|
||||
|
||||
def _real_initialize(self):
|
||||
(email, password) = self._get_login_info()
|
||||
email, password = self._get_login_info()
|
||||
if email is None:
|
||||
return
|
||||
result = self._download_json(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue