diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-23 22:21:46 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-23 22:21:46 +0100 |
commit | b74e86f48aa6d007b681e2723ff28fe82a49fa9d (patch) | |
tree | 660c068ab4ea4835c8311c974b029360d5350875 /youtube_dl/extractor/channel9.py | |
parent | 3d36cea4aca303f6bde5b5453f4e3aeec8ee41e1 (diff) |
Fix all PEP8 issues except E501
Diffstat (limited to 'youtube_dl/extractor/channel9.py')
-rw-r--r-- | youtube_dl/extractor/channel9.py | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/youtube_dl/extractor/channel9.py b/youtube_dl/extractor/channel9.py index 82a48870a..2a05813f8 100644 --- a/youtube_dl/extractor/channel9.py +++ b/youtube_dl/extractor/channel9.py @@ -188,16 +188,17 @@ class Channel9IE(InfoExtractor): view_count = self._extract_view_count(html) comment_count = self._extract_comment_count(html) - common = {'_type': 'video', - 'id': content_path, - 'description': description, - 'thumbnail': thumbnail, - 'duration': duration, - 'avg_rating': avg_rating, - 'rating_count': rating_count, - 'view_count': view_count, - 'comment_count': comment_count, - } + common = { + '_type': 'video', + 'id': content_path, + 'description': description, + 'thumbnail': thumbnail, + 'duration': duration, + 'avg_rating': avg_rating, + 'rating_count': rating_count, + 'view_count': view_count, + 'comment_count': comment_count, + } result = [] |