1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-18 15:15:42 +07:00

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

@@ -75,7 +75,7 @@ def _check_access_rights(self, data):
'Access to this content is restricted. (%s said: %s)' % (self.IE_NAME, err_code), expected=True)
def _login(self):
(username, password) = self._get_login_info()
username, password = self._get_login_info()
if username is None:
return
self.report_login()