Remove unused imports
This commit is contained in:
parent
526b276fd7
commit
c9f08154a3
8 changed files with 2 additions and 15 deletions
|
@ -4,7 +4,6 @@ import json
|
|||
import re
|
||||
|
||||
from .common import InfoExtractor
|
||||
from ..utils import int_or_none
|
||||
|
||||
|
||||
_translation_table = {
|
||||
|
@ -39,9 +38,7 @@ class CliphunterIE(InfoExtractor):
|
|||
}
|
||||
|
||||
def _real_extract(self, url):
|
||||
mobj = re.match(self._VALID_URL, url)
|
||||
video_id = mobj.group('id')
|
||||
|
||||
video_id = self._match_id(url)
|
||||
webpage = self._download_webpage(url, video_id)
|
||||
|
||||
video_title = self._search_regex(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue