mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-16 06:15:46 +00:00
Remove unused method
This commit is contained in:
parent
ae8fb74131
commit
9680022207
1 changed files with 0 additions and 9 deletions
|
@ -5,7 +5,6 @@ import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..compat import (
|
from ..compat import (
|
||||||
compat_str,
|
|
||||||
compat_urllib_parse_urlparse,
|
compat_urllib_parse_urlparse,
|
||||||
compat_urllib_parse_urlencode,
|
compat_urllib_parse_urlencode,
|
||||||
)
|
)
|
||||||
|
@ -210,14 +209,6 @@ class GlomexEmbedIE(GlomexBaseIE):
|
||||||
player_url = cls._smuggle_origin_url(player_url, origin_url)
|
player_url = cls._smuggle_origin_url(player_url, origin_url)
|
||||||
return player_url
|
return player_url
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def _match_integration(cls, url):
|
|
||||||
if '_VALID_URL_RE' not in cls.__dict__:
|
|
||||||
cls._VALID_URL_RE = re.compile(cls._VALID_URL)
|
|
||||||
m = cls._VALID_URL_RE.match(url)
|
|
||||||
assert m
|
|
||||||
return compat_str(m.group('integration'))
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def _extract_urls(cls, webpage, origin_url):
|
def _extract_urls(cls, webpage, origin_url):
|
||||||
# make the scheme in _VALID_URL optional
|
# make the scheme in _VALID_URL optional
|
||||||
|
|
Loading…
Reference in a new issue