diff options
author | Remita Amine <remitamine@gmail.com> | 2018-05-26 16:12:44 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2018-05-26 16:13:54 +0100 |
commit | 68217024e83c8e7965f2800e9ff7a9575f049b5c (patch) | |
tree | 0221f6ee7aa6a8379dd936c88cadc9a5d185f79c /youtube_dl/extractor/tennistv.py | |
parent | ec2f3d2800185920629a7e6946701edebbf14dd6 (diff) |
remove unnecessary assignment parenthesis
Diffstat (limited to 'youtube_dl/extractor/tennistv.py')
-rw-r--r-- | youtube_dl/extractor/tennistv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tennistv.py b/youtube_dl/extractor/tennistv.py index 0c6f70784..a586f30ad 100644 --- a/youtube_dl/extractor/tennistv.py +++ b/youtube_dl/extractor/tennistv.py @@ -32,7 +32,7 @@ class TennisTVIE(InfoExtractor): _NETRC_MACHINE = 'tennistv' def _login(self): - (username, password) = self._get_login_info() + username, password = self._get_login_info() if not username or not password: raise ExtractorError('No login info available, needed for using %s.' % self.IE_NAME, expected=True) |