mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-25 11:41:52 +00:00
[videofy.me] Fixed flake8 errors
This commit is contained in:
parent
a6246c1f5b
commit
c443152757
1 changed files with 3 additions and 6 deletions
|
@ -6,11 +6,8 @@ from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
int_or_none,
|
int_or_none,
|
||||||
parse_iso8601,
|
parse_iso8601,
|
||||||
unescapeHTML,
|
|
||||||
sanitize_url,
|
|
||||||
clean_html,
|
clean_html,
|
||||||
get_element_by_attribute,
|
get_element_by_attribute,
|
||||||
js_to_json,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -46,7 +43,7 @@ class VideofyMeIE(InfoExtractor):
|
||||||
'uploader_id': 1798214,
|
'uploader_id': 1798214,
|
||||||
'view_count': int,
|
'view_count': int,
|
||||||
},
|
},
|
||||||
},]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
|
|
Loading…
Reference in a new issue